Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
How to rename a directory or folder in C#
WhatsApp
Soft Dev
12y
60.7
k
0
5
Resource
0
You can use Directory.Move method to move or rename a directory or folder. This method takes two parameters - the existing folder and new folder.
Here is the code snippet.
Directory.Move(fromDir, toDir);
C#
directory