工作後第一篇技術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();
}
}