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;
|
|
|
|
|
|
|
|
|
|
namespace Obfuz
|
|
|
|
|
{
|
|
|
|
|
public static class FileUtil
|
|
|
|
|
{
|
2025-04-19 10:13:18 +08:00
|
|
|
|
|
|
|
|
|
public static void RemoveDir(string dir, bool log = false)
|
|
|
|
|
{
|
|
|
|
|
if (log)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.Log($"[BashUtil] RemoveDir dir:{dir}");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.LogError($"[BashUtil] RemoveDir:{dir} with exception:{e}. try count:{i}");
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.Log($"[BashUtil] CopyDir {src} => {dst}");
|
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|