| | |
How to change folder or file name using C# ?
Please support our C# advertiser: Intel Parallel Studio Home
Thread Solved |
•
•
Join Date: Sep 2009
Posts: 2
Reputation:
Solved Threads: 0
I'm making a project that gets folder and file names in a specific path and I want to edit the folder or file names? (e.g: folder name is X.Men.DVDrip I want to change it to X Men DVDrip)
I have the path of the folder, but I dont know how to change the file name.
Can anyone help me with this issue ?
(am using VS C# 2008)
Thanks.
I have the path of the folder, but I dont know how to change the file name.
Can anyone help me with this issue ?
(am using VS C# 2008)
Thanks.
File | You may use Move method in System.IO like that
Folder | the same
C# Syntax (Toggle Plain Text)
System.IO.File.Move(@"C:\old.txt", @"C:\new.txt"); //it renames the file old to new.txt
Folder | the same
C# Syntax (Toggle Plain Text)
System.IO.Directory.Move(@"C:\oldfolder", @"C:\newfolder");
Last edited by Ramy Mahrous; Sep 18th, 2009 at 8:39 am.
BI Developer | LINKdotNET
B.Sc Computer Science, Helwan University
Technical blog | http://ramymahrous.wordpress.com
LinkedIn | http://www.linkedin.com/in/ramymahrous
B.Sc Computer Science, Helwan University
Technical blog | http://ramymahrous.wordpress.com
LinkedIn | http://www.linkedin.com/in/ramymahrous
![]() |
Similar Threads
- Selected Folder/File (VB.NET)
- how to change folder background (Windows tips 'n' tweaks)
- How would you know if a it a file or a folder in c#? (C#)
- saving to a folder, not a file (C++)
- BCB6 File Folder position and creation (C++)
- When I double click a folder/File the "Search" option opens instead. (Windows NT / 2000 / XP)
- Copying a folder into Excel or text file (Windows NT / 2000 / XP)
- trying to change WMA file types (Windows Software)
Other Threads in the C# Forum
- Previous Thread: connection to database
- Next Thread: Calling DestroyEnvironmentBlock on CreateProcessAsUser while it is still running? [C#
| Thread Tools | Search this Thread |
.net access algorithm array asp.net barchart bitmap box broadcast c# check checkbox client combobox control conversion csharp custom database databaseconnection datagrid datagridview dataset datetime dbconnection degrees design development draganddrop drawing encryption enum event eventhandlers excel file firefox form format forms function gdi+ grantorrevokepermissionthroughc#.net httpwebrequest image index input install java label libraries list listbox loop mandelbrot marshalbyrefobject math mouseclick movingimage mysql mysql.data.client operator path photoshop php picturebox pixelinversion post programming radians regex remoting resourcefile richtextbox server sleep socket sql statistics stream string study system.servicemodel table tcpclientchannel text textbox thread time timer update usercontrol validation visualstudio webbrowser windows winforms wpf wpfc# xml






