Bug fix #262 : 'file not found' after moved dir

This commit is contained in:
Robert McRackan 2022-05-26 16:11:03 -04:00
parent 0a6e55dcb7
commit 42c0648ba7

View File

@ -134,7 +134,8 @@ namespace FileManager
private void AddPath(string path) private void AddPath(string path)
{ {
if (!File.Exists(path)) return; if (!File.Exists(path) && !Directory.Exists(path))
return;
if (File.GetAttributes(path).HasFlag(FileAttributes.Directory)) if (File.GetAttributes(path).HasFlag(FileAttributes.Directory))
AddUniqueFiles(FileUtility.SaferEnumerateFiles(path, SearchPattern, SearchOption)); AddUniqueFiles(FileUtility.SaferEnumerateFiles(path, SearchPattern, SearchOption));
else else