| | |
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 barchart bitmap box broadcast c# check checkbox client combobox control conversion csharp custom cyclethruopenforms data database datagrid datagridview dataset date/time datetime degrees development draganddrop drawing encryption enum event excel file filename finalyearproject form format forms function gdi+ getoutlookcontactusinfcsvfile globalization gtk httpwebrequest image index input install installer java label list listbox mandelbrot math mono mouseclick mysql operator panel path photoshop picturebox pixelinversion post programming radians regex remote remoting richtextbox save server silverlight sleep socket sql sql-server statistics stream string table text textbox thread time timer timespan update usercontrol users validate validation visualstudio webbrowser windows winforms wpf xml






