C#對磁盤IO操作的時候,經常會用到這些,路徑,文件,文件名字,文件擴展名. 之前,經常用切割字符串來實現, 可是經常會弄錯. 尤其是啟始位置,多少個字節,經常弄暈. 下面這種方法貌似比較簡便: string filePath = @"E:\Randy0528\中文目錄\JustTest.rar"; Response.Write("文件路徑:"+filePath); Response.Write(" 更改路徑字符串的擴展名。 "); Response.Write(System.IO.Path.ChangeExtension(filePath, "txt")); Response.Write(" 返回指定路徑字符串的目錄信息。。 "); Response.Write(System.IO.Path.GetDirectoryName(filePath)); Response.Write(" 返回指定的路徑字符串的擴展名。 "); Response.Write(System.IO.Path.GetExtension(filePath)); Response.Write(" 返回指定路徑字符串的文件名和擴展名。 "); Response.Write(System.IO.Path.GetFileName(filePath)); Response.Write(" 返回不具有擴展名的指定路徑字符串的文件名。 "); Response.Write(System.IO.Path.GetFileNameWithoutExtension(filePath)); Response.Write(" 獲取指定路徑的根目錄信息。 "); Response.Write(System.IO.Path.GetPathRoot(filePath)); Response.Write(" 返回隨機文件夾名或文件名。 "); Response.Write(System.IO.Path.GetRandomFileName()); Response.Write(" 創建磁盤上唯一命名的零字節的臨時文件並返回該文件的完整路徑。 "); Response.Write(System.IO.Path.GetTempFileName()); Response.Write(" 返回當前系統的臨時文件夾的路徑。 "); Response.Write(System.IO.Path.GetTempPath()); Response.Write(" 確定路徑是否包括文件擴展名。 "); Response.Write(System.IO.Path.HasExtension(filePath)); Response.Write(" 獲取一個值,該值指示指定的路徑字符串是包含絕對路徑信息還是包含相對路徑信息。 "); Response.Write(System.IO.Path.IsPathRooted(filePath));
文件路徑:E:\Randy0528\中文目錄\JustTest.rar C 文件路徑、文件名、擴展名 - skyroom - lantianroom更改路徑字符串的擴展名。 C 文件路徑、文件名、擴展名 - skyroom - lantianroomE:\Randy0528\中文目錄\JustTest.txt C 文件路徑、文件名、擴展名 - skyroom - lantianroom返回指定路徑字符串的目錄信息。。 C 文件路徑、文件名、擴展名 - skyroom - lantianroomE:\Randy0528\中文目錄 C 文件路徑、文件名、擴展名 - skyroom - lantianroom返回指定的路徑字符串的擴展名。 C 文件路徑、文件名、擴展名 - skyroom - lantianroom.rar C 文件路徑、文件名、擴展名 - skyroom - lantianroom返回指定路徑字符串的文件名和擴展名。 C 文件路徑、文件名、擴展名 - skyroom - lantianroomJustTest.rar C 文件路徑、文件名、擴展名 - skyroom - lantianroom返回不具有擴展名的指定路徑字符串的文件名。 C 文件路徑、文件名、擴展名 - skyroom - lantianroomJustTest C 文件路徑、文件名、擴展名 - skyroom - lantianroom獲取指定路徑的根目錄信息。 C 文件路徑、文件名、擴展名 - skyroom - lantianroomE:\ C 文件路徑、文件名、擴展名 - skyroom - lantianroom返回隨機文件夾名或文件名。 C 文件路徑、文件名、擴展名 - skyroom - lantianroomct2h5b2h.sed C 文件路徑、文件名、擴展名 - skyroom - lantianroom創建磁盤上唯一命名的零字節的臨時文件並返回該文件的完整路徑。 C 文件路徑、文件名、擴展名 - skyroom - lantianroomC:\Documents and Settings\Randy\Local Settings\Temp\tmpAD.tmp C 文件路徑、文件名、擴展名 - skyroom - lantianroom返回當前系統的臨時文件夾的路徑。 C 文件路徑、文件名、擴展名 - skyroom - lantianroomC:\Documents and Settings\Randy\Local Settings\Temp\ C 文件路徑、文件名、擴展名 - skyroom - lantianroom確定路徑是否包括文件擴展名。 C 文件路徑、文件名、擴展名 - skyroom - lantianroomTrue C 文件路徑、文件名、擴展名 - skyroom - lantianroom獲取一個值,該值指示指定的路徑字符串是包含絕對路徑信息還是包含相對路徑信息。 C 文件路徑、文件名、擴展名 - skyroom - lantianroomTrue
