Full-size cover picture viewer

This commit is contained in:
Michael Bucari-Tovo 2022-05-10 16:03:02 -06:00
parent 64eaa157e5
commit 59aeaf24e4
5 changed files with 342 additions and 40 deletions

View file

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