fix #167
parent
2321b1556b
commit
fe6029936e
|
@ -28,14 +28,13 @@ namespace YooAsset
|
||||||
|
|
||||||
public void DeleteFiles()
|
public void DeleteFiles()
|
||||||
{
|
{
|
||||||
if (File.Exists(DataFilePath))
|
try
|
||||||
{
|
{
|
||||||
File.Delete(DataFilePath);
|
Directory.Delete(FileRootPath, true);
|
||||||
}
|
}
|
||||||
|
catch (System.Exception e)
|
||||||
if (File.Exists(InfoFilePath))
|
|
||||||
{
|
{
|
||||||
File.Delete(InfoFilePath);
|
YooLogger.Warning($"Failed delete cache bundle folder : {e}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue