0
情況是這樣的: 我使用字符串格式一樣創建一個新的文件名:如何在C#中用字符串格式重命名文件?
string newFileName = string.Format("{0}/{1}/{2}/{3}.txt", FileInfo.Year,
FileInfo.Month, FileInfo.Day, FileInfo.Time);
和我有另一個(舊)用文件的路徑:string path = @"C:\Users\Public\fileName.txt"
我想改變或移動老 - >新的。怎麼做?是否有可能改變新的路徑? 有沒有人可以幫助我。在此先感謝
'System.IO.File.Move'。 – Mephy 2014-12-06 03:17:57
謝謝。我會照顧。 – Steve 2014-12-06 03:40:40