當我們使用 DirectoryInfo dir = Directory.CreateDirectory(pathName) 建立目錄或者建立一個檔案後,有時作為臨時檔案用完以後需要刪除掉,使用File.delete()或者Directory.Delete()經常會遇到“訪問被拒絕的錯誤”;這時我們需要設定檔案或者檔案夾的唯讀屬性,再進行刪除。
去除檔案夾的唯讀屬性: System.IO.DirectoryInfo DirInfo = new DirectoryInfo(“filepath”);
DirInfo.Attributes = FileAttributes.Normal & FileAttributes.Directory;
去除檔案的唯讀屬性: System.IO.File.SetAttributes("filepath", System.IO.FileAttributes.Normal);
FileAttributes 枚舉
提供檔案和目錄的屬性。
此枚舉有一個 FlagsAttribute 屬性,允許其成員值按位組合。
命名空間:System.IO
程式集:mscorlib(在 mscorlib.dll 中)
文法
[SerializableAttribute]
[FlagsAttribute]
[ComVisibleAttribute(true)]
public enum FileAttributes
|
成員名稱 |
說明 |
|
Archive |
檔案的存檔狀態。應用程式使用此屬性為檔案加上備份或移除標記。 |
|
Compressed |
檔案已壓縮。 |
|
Device |
保留供將來使用。 |
|
Directory |
檔案為一個目錄。 |
|
Encrypted |
該檔案或目錄是加密的。對於檔案來說,表示檔案中的所有資料都是加密的。對於目錄來說,表示新建立的檔案和目錄在預設情況下是加密的。 |
|
Hidden |
檔案是隱藏的,因此沒有包括在普通的目錄列表中。 |
|
Normal |
檔案正常,沒有設定其他的屬性。此屬性僅在單獨使用時有效。 |
|
NotContentIndexed |
作業系統的內容索引服務不會建立此檔案的索引。 |
|
Offline |
檔案已離線。檔案資料不能立即供使用。 |
|
ReadOnly |
檔案為唯讀。 |
|
ReparsePoint |
檔案包含一個重新分析點,它是一個與檔案或目錄關聯的使用者定義的資料區塊。 |
|
SparseFile |
檔案為疏鬆檔案。疏鬆檔案一般是資料通常為零的大檔案。 |
|
System |
檔案為系統檔案。檔案是作業系統的一部分或由作業系統以獨佔方式使用。 |
|
Temporary |
檔案是臨時檔案。檔案系統試圖將所有資料保留在記憶體中以便更快地訪問,而不是將資料重新整理回大量存放區中。不再需要臨時檔案時,應用程式會立即將其刪除。 |
FileAttributes的簡單應用
常用的FileAttributes成員有Hidden,System,Archive,ReadOnly,Directory等等。這些對象可以進行位域運算,通過位或運算給檔案附上屬性。如:File.setAttribute(filename,FileAttribute.Hidden|FileAttribute.ReadOnly)則,filename檔案就擁有Hidden和ReadOnly兩種屬性。
在數值和標誌枚舉常量之間執行按位“與”操作就可以測試數值中是否已設定標誌,這種方法會將數值中與標誌不對應的所有位都設定為零,然後測試該操作的結果是否等於該標誌枚舉常量。
仍然是MSDN中的例子:
using System;
using System.IO;
using System.Text;
class Test
{
public static void Main()
{
string path = @"c:\temp\MyTest.txt";
// Create the file if it does not exist.
if (!File.Exists(path))
{
File.Create(path);
}
if ((File.GetAttributes(path) & FileAttributes.Hidden) == FileAttributes.Hidden)
{
// Show the file.
File.SetAttributes(path, FileAttributes.Archive);
Console.WriteLine("The {0} file is no longer hidden.", path);
}
else
{
// Hide the file.
File.SetAttributes(path, File.GetAttributes(path) | FileAttributes.Hidden);
Console.WriteLine("The {0} file is now hidden.", path);
}
}
}
ps:FileAttributes.Archive是文檔的存檔狀態,應用程式使用該屬性為檔案加上備份或刪除標記。