C # code for renaming a file,

Source: Internet
Author: User

C # code for renaming a file,

In C #, there is no rename method. I wrote a method to process file rename.

/// <Summary>

/// Rename all subfolders in the folder

/// </Summary>

/// <Param name = "directoryName"> folder name </param>

/// <Param name = "newDirectoryName"> New subfolder name Format String </param>

Public void RenameDirectories (string directoryName, string newDirectoryName)

{

Int I = 1;

String [] sDirectories = Directory. GetDirectories (directoryName );

Foreach (string sDirectory in sDirectories)

{

String sDirectoryName = Path. GetFileName (sDirectory );

String sNewDirectoryName = string. Format (newDirectoryName, I ++ );

String sNewDirectory = Path. Combine (directoryName, sNewDirectoryName );

Directory. Move (sDirectory, sNewDirectory );

}

}

 

 

// Full path name of the original file in the list
String oldStr = ft. FileRoute + @ "/" + ft. FileName + ft. ExName;

// New file name
String newStr = ft. FileRoute + @ "/" + preChar + name + nextChar + ft. ExName;

// Rename Method
FileInfo fi = new FileInfo (oldStr );
Fi. MoveTo (Path. Combine (newStr ));

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.