using System.IO;
using System.Threading;
namespace StardewModdingAPI.Toolkit.Utilities
{
/// Provides utilities for dealing with files.
public static class FileUtilities
{
/*********
** Public methods
*********/
/// Delete a file or folder regardless of file permissions, and block until deletion completes.
/// The file or folder to reset.
public static void ForceDelete(FileSystemInfo entry)
{
// ignore if already deleted
entry.Refresh();
if (!entry.Exists)
return;
// delete children
if (entry is DirectoryInfo folder)
{
foreach (FileSystemInfo child in folder.GetFileSystemInfos())
FileUtilities.ForceDelete(child);
}
// reset permissions & delete
entry.Attributes = FileAttributes.Normal;
entry.Delete();
// wait for deletion to finish
for (int i = 0; i < 10; i++)
{
entry.Refresh();
if (entry.Exists)
Thread.Sleep(500);
}
// throw exception if deletion didn't happen before timeout
entry.Refresh();
if (entry.Exists)
throw new IOException($"Timed out trying to delete {entry.FullName}");
}
}
}