程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#刪除單個文件或文件夾(權限修改)

C#刪除單個文件或文件夾(權限修改)

編輯:C#入門知識

工作後第一篇技術blog,抽象出一些小技術,記錄下。

刪除單個文件直接用 File.Delete;

刪除文件夾下子文件夾及子文件用FileInfo和DirectoryInfo,根目錄下先刪文件,再遞歸進入子文件夾。注意權限不足導致的無法刪除現象,刪除前統一改成Normal屬性。

ClearSingleFile();

ClearDirectory();


    /// <summary>
    /// 刪除單個文件
    /// </summary>
    static void ClearSingleFile()
    {
        string I18N_File = Application.dataPath + "/Plugins/I18N.dll";//example,填文件絕對或相對路徑
        ClearI18NDlls(I18N_File);
    }


    /// <summary>
    /// 由ClearSingleFile調用,功能實現
    /// </summary>
    static void ClearI18NDlls(string dllpath)
    {
        if (File.Exists(dllpath))
        {
            try
            {
                File.Delete(dllpath);
            }
            catch (System.Exception ex)
            {
                //catch ex
            }
        }
    }


    /// <summary>
    /// 刪除文件夾下子文件夾及子文件
    /// </summary>
    static void ClearDirectory()
    {
        string audioPath = Application.dataPath + "/Game/Audio/Resources";
        ClearFileUnderPath(audioPath);
    }


    /// <summary>
    /// 由ClearDirectory調用,刪除dataPath下所有內容
    /// </summary>
    static void ClearFileUnderPath(string dataPath)
    {
        DirectoryInfo dir = new DirectoryInfo(dataPath);


        //文件
        foreach (FileInfo fChild in dir.GetFiles("*"))//這裡可選文件篩選方式
        {
            if (fChild.Attributes != FileAttributes.Normal)
                fChild.Attributes = FileAttributes.Normal; //避免文件屬性為Readonly或Hidden時無權限問題
            fChild.Delete();
        }


        //文件夾
        foreach (DirectoryInfo dChild  in dir.GetDirectories("*"))//這裡可選文件夾篩選方式
        {
            if (dChild.Attributes != FileAttributes.Normal)    www.2cto.com
                dChild.Attributes = FileAttributes.Normal;//避免文件夾屬性為Readonly或Hidden時無權限問題
            ClearFileUnderPath(dChild.FullName);//遞歸
            dChild.Delete();
        }
    }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved