C# 重新命名檔案

小菜來報導發表於2013-07-24

在vb下,有一個方法可以對檔案進行重新命名,所以,我們只要引用到這種方法進行應用即可。

1、新增引用Microsoft.VisualBasic

2、新增名稱空間using Microsoft.VisualBasic.Devices

3、Computer c = new Computer();
     c.FileSystem.RenameFile(file,newName);//file:檔案路徑  newName:新名稱

相關文章