I have an image in a folder and I wanted to change the name to only the
Can someone help me?
Thank you
example:
nomeoriginal.jpg
was to:
I have an image in a folder and I wanted to change the name to only the
Can someone help me?
Thank you
example:
nomeoriginal.jpg
was to:
Use the System.IO.File.Move
System.IO.File.Move("nomeoriginal.jpg", "nomepretendido.jpg");
Source: link