Rename a file

  • Thread starter Thread starter Randy
  • Start date Start date
R

Randy

Ok, something simple like this shouldn't be so hard to find. I'm confounded
as to why the File class doesn't have a Rename method.
Can someone please tell me how to rename a file in C#?

Thanks
 
Randy said:
Ok, something simple like this shouldn't be so hard to find. I'm
confounded as to why the File class doesn't have a Rename method.
Can someone please tell me how to rename a file in C#?

Use File.Move. Renaming is basically just a move operation in the same
folder.
 
Back
Top