obfuz/Editor/Utils/FileUtil.cs

101 lines
2.9 KiB
C#
Raw Normal View History

2025-04-05 21:47:28 +08:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
2025-04-19 10:13:18 +08:00
using System.Threading;
2025-04-05 21:47:28 +08:00
using System.Threading.Tasks;
2025-05-04 19:24:14 +08:00
namespace Obfuz.Utils
2025-04-05 21:47:28 +08:00
{
public static class FileUtil
{
public static void CreateParentDir(string path)
{
Directory.CreateDirectory(Path.GetDirectoryName(path));
}
2025-04-19 10:13:18 +08:00
public static void RemoveDir(string dir, bool log = false)
{
if (log)
{
2025-04-20 14:23:40 +08:00
UnityEngine.Debug.Log($"removeDir dir:{dir}");
2025-04-19 10:13:18 +08:00
}
int maxTryCount = 5;
for (int i = 0; i < maxTryCount; ++i)
{
try
{
if (!Directory.Exists(dir))
{
return;
}
foreach (var file in Directory.GetFiles(dir))
{
File.SetAttributes(file, FileAttributes.Normal);
File.Delete(file);
}
foreach (var subDir in Directory.GetDirectories(dir))
{
RemoveDir(subDir);
}
Directory.Delete(dir, true);
break;
}
catch (Exception e)
{
2025-04-20 14:23:40 +08:00
UnityEngine.Debug.LogError($"removeDir:{dir} with exception:{e}. try count:{i}");
2025-04-19 10:13:18 +08:00
Thread.Sleep(100);
}
}
}
2025-04-05 21:47:28 +08:00
public static void RecreateDir(string dir)
{
if (Directory.Exists(dir))
{
2025-04-19 10:13:18 +08:00
RemoveDir(dir, true);
2025-04-05 21:47:28 +08:00
}
Directory.CreateDirectory(dir);
}
2025-04-19 10:13:18 +08:00
private static void CopyWithCheckLongFile(string srcFile, string dstFile)
{
var maxPathLength = 255;
#if UNITY_EDITOR_OSX
maxPathLength = 1024;
#endif
if (srcFile.Length > maxPathLength)
{
UnityEngine.Debug.LogError($"srcFile:{srcFile} path is too long. skip copy!");
return;
}
if (dstFile.Length > maxPathLength)
{
UnityEngine.Debug.LogError($"dstFile:{dstFile} path is too long. skip copy!");
return;
}
File.Copy(srcFile, dstFile);
}
public static void CopyDir(string src, string dst, bool log = false)
{
if (log)
{
2025-04-20 14:23:40 +08:00
UnityEngine.Debug.Log($"copyDir {src} => {dst}");
2025-04-19 10:13:18 +08:00
}
RemoveDir(dst);
Directory.CreateDirectory(dst);
foreach (var file in Directory.GetFiles(src))
{
CopyWithCheckLongFile(file, $"{dst}/{Path.GetFileName(file)}");
}
foreach (var subDir in Directory.GetDirectories(src))
{
CopyDir(subDir, $"{dst}/{Path.GetFileName(subDir)}");
}
}
2025-04-05 21:47:28 +08:00
}
}