在.Net中,對文件(File)和文件夾(Folder)的操做可使用File類和Directory類,也可使用FileInfo類和DirectoryInfo類,本文將詳細介紹,須要的朋友能夠參考。spa
在.Net中,對文件(File)和文件夾(Folder)的操做可使用File類和Directory類,也可使用FileInfo類和DirectoryInfo類。文件夾(Folder)是隻在Windows操做系統中使用的名詞。在操做系統的理論中,人們更習慣於使用目錄(Directory)這個名詞。或許微軟爲了有朝一日將.Net移植到其餘的操做系統中(實際上也有不少人也在作着這個項目),因此仍是以Directory來命名操做文件夾的類。
File類和Directory類都是靜態類。使用它們的好處是不須要初始化對象。若是你對某一個文件或文件夾只進行一次操做,那你最好使用該靜態類的靜態方法,好比File.Move,File.Delete等等。若是你須要對一個文件或文件夾進行屢次操做,那最好仍是使用FileInfo和DirectoryInfo類。由於File類和Directory是靜態類,因此你每次對一個文件或文件夾進行操做以前,它們都須要對該文件或文件夾進行一些檢查,好比authentication。若是使用FileInfo類和DirectoryInfo類,只在初始化類的對象時進行相關的檢查工做,也就是說只須要作一次,因此若是你須要對某個文件或文件夾進行屢次操做,那最好使用FileInfo類和DirectoryInfo類。
下面的這段代碼演示瞭如何得到文件夾的信息,包括得到文件夾下的子文件夾,以及文件夾下的文件。這裏使用了DirectoryInfo 類來完成,固然你也可使用Directory靜態類。 操作系統
代碼以下:code
void DisplayFolder() { string folderFullName = @"c:\temp"; DirectoryInfo theFolder = new DirectoryInfo(folderFullName); if (!theFolder.Exists) throw new DirectoryNotFoundException("Folder not found: " + folderFullName); // list all subfolders in folder Console.WriteLine("Subfolders:"); foreach (DirectoryInfo subFolder in theFolder.GetDirectories()) { Console.WriteLine(subFolder.Name); } // list all files in folder Console.WriteLine(); Console.WriteLine("Files:"); foreach (FileInfo file in theFolder.GetFiles()) { Console.WriteLine(file.Name); } }
下面演示瞭如何使用FileInfo類來得到文件的相關信息,包括文件的建立日期,文件的大小等等。固然你一樣也可使用File靜態類來完成。orm
代碼以下:對象
void DisplayFileInfo() { string folderFullName = @"c:\temp"; string fileName = "New Text Document.txt"; string fileFullName = Path.Combine(folderFullName, fileName); FileInfo theFile = new FileInfo(fileFullName); if (!theFile.Exists) throw new FileNotFoundException("File not found: " + fileFullName); Console.WriteLine(string.Format("Creation time: {0}", theFile.CreationTime.ToString())); Console.WriteLine(string.Format("Size: {0} bytes", theFile.Length.ToString())); }
下面的代碼分別使用了File類和FileInfo類來演示如何刪除文件。blog
代碼以下:string
void DeleteFile1() { string fileToBeDeleted = @"c:\temp\New Text~ Document (3).txt"; if (File.Exists(fileToBeDeleted)) { File.Delete(fileToBeDeleted); } } void DeleteFile2() { string fileToBeDeleted = @"c:\temp\New Text~ Document (3).txt"; FileInfo file = new FileInfo(fileToBeDeleted); if (file.Exists) { file.Delete(); } }
下面的代碼分別使用了Directory類和DirectoryInfo類來演示如何刪除文件夾。it
代碼以下:io
void DeleteFolder1() { string folderToBeDeleted = @"c:\temp\test"; if (Directory.Exists(folderToBeDeleted)) { // true is recursive delete: Directory.Delete(folderToBeDeleted, true); } } void DeleteFolder2() { string folderToBeDeleted = @"c:\temp\test"; DirectoryInfo folder = new DirectoryInfo(folderToBeDeleted); if (folder.Exists) { folder.Delete(true); } }
下面的代碼分別使用了File類和FileInfo類來演示如何移動文件。class
代碼以下:
void MoveFile1() { string fileToMove = @"c:\temp\New Text Document.txt"; string fileNewDestination = @"c:\temp\test.txt"; if (File.Exists(fileToMove) && !File.Exists(fileNewDestination)) { File.Move(fileToMove, fileNewDestination); } } void MoveFile2() { string fileToMove = @"c:\temp\New Text Document.txt"; string fileNewDestination = @"c:\temp\test.txt"; FileInfo file = new FileInfo(fileToMove); if (file.Exists) { file.MoveTo(fileNewDestination); } }
下面的代碼分別使用了Directory類和DirectoryInfo類來演示如何移動文件夾。
代碼以下:
void MoveFolder1() { string folderToMove = @"c:\temp\test"; string folderNewDestination = @"c:\temp\test2"; if (Directory.Exists(folderToMove)) { Directory.Move(folderToMove, folderNewDestination); } } void MoveFolder2() { string folderToMove = @"c:\temp\test"; string folderNewDestination = @"c:\temp\test2"; DirectoryInfo folder = new DirectoryInfo(folderToMove); if (folder.Exists) { folder.MoveTo(folderNewDestination); } }
下面的代碼分別使用了File類和FileInfo類來演示如何複製文件。
代碼以下:
void CopyFile1() { string sourceFile = @"c:\temp\New Text Document.txt"; string destinationFile = @"c:\temp\test.txt"; if (File.Exists(sourceFile)) { // true is overwrite File.Copy(sourceFile, destinationFile, true); } } void CopyFile2() { string sourceFile = @"c:\temp\New Text Document.txt"; string destinationFile = @"c:\temp\test.txt"; FileInfo file = new FileInfo(sourceFile); if (file.Exists) { // true is overwrite file.CopyTo(destinationFile, true); } }