We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f255b43 commit fb73354Copy full SHA for fb73354
FlashpointManager/src/Forms/Settings.cs
@@ -76,7 +76,7 @@ private async void UninstallButton_Click(object sender, EventArgs e)
76
TabControl.Enabled = false;
77
78
await Task.Run(() => {
79
- foreach (string file in Directory.EnumerateFileSystemEntries(FPM.SourcePath, "*", SearchOption.AllDirectories))
+ foreach (string file in Directory.EnumerateFiles(FPM.SourcePath, "*", SearchOption.AllDirectories))
80
{
81
try { FPM.DeleteFileAndDirectories(file); } catch { }
82
}
0 commit comments