C# 去除檔案和檔案夾的唯讀屬性

來源:互聯網
上載者:User

當我們使用 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是文檔的存檔狀態,應用程式使用該屬性為檔案加上備份或刪除標記。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.