.NET 下 C#操作檔案的常用方法總結

來源:互聯網
上載者:User

標籤:

 

1.0 開啟檔案隱藏屬性 

string fileName = "text.txt";            if (!File.Exists(fileName))//判斷檔案是否存在            {                File.Create(fileName);//建立一個文字檔            }            //判斷檔案夾是否已經具有隱藏屬性            if ((File.GetAttributes(fileName)&FileAttributes.Hidden)!=FileAttributes.Hidden)            {                File.SetAttributes(fileName, FileAttributes.Hidden);//將文字檔隱藏屬性開啟            }

1.1開啟檔案夾唯讀屬性

 string directoryName = "test";            if (!Directory.Exists(directoryName))//判斷檔案夾是否存在            {                Directory.CreateDirectory(directoryName);//建立檔案夾            }            //擷取檔案夾存取控制清單            DirectorySecurity dirSecurity = Directory.GetAccessControl(directoryName);            //將指定存取控制清單添加到當前檔案夾            dirSecurity.AddAccessRule(new FileSystemAccessRule("Admin", FileSystemRights.Read, InheritanceFlags.None, PropagationFlags.InheritOnly, AccessControlType.Allow));//這裡的 Admin 字串是 系統的使用者名稱,否則會報錯            Directory.SetAccessControl(directoryName, dirSecurity);//設定檔案夾存取控制清單

1.0與1.1 比較     

不同之處: 一個是檔案一個是檔案夾,所以在判斷檔案和檔案夾是否存在的時候 用的類不同 ,分別是File 和 Directory

下面對這兩個類給個初步說明

File        :提供用於建立、複製、刪除、移動和開啟檔案的靜態方法,並協助建立 System.IO.FileStream 對象。

Directory:公開用於建立、移動和枚舉通過目錄和子目錄的靜態方法。 此類不能被繼承。

處理檔案會經常使用這2個類

1.3 輸出子檔案夾路徑

        static void Main(string[] args)        {            string path = @"D:\study\2015年\檔案系統\01\01";            DisplayDirectories(path);        }        static void DisplayDirectories(string path)         {            DirectoryInfo directoryInfo = new DirectoryInfo(path);            Console.WriteLine(directoryInfo.FullName);//輸出檔案夾資訊            foreach (DirectoryInfo DI in directoryInfo.GetDirectories())            {                DisplayDirectories(DI.FullName);//輸出子檔案夾資訊            }        }

這裡介紹下 DirectoryInfo 類  :公開用於建立、移動和枚舉目錄和子目錄的執行個體方法。 此類不能被繼承。

 

今天就統計到這裡,會持續跟進!

.NET 下 C#操作檔案的常用方法總結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.