Minor tweaks made to the FileViewer to report scanning information.

This commit is contained in:
Admin
2020-12-08 14:46:06 -06:00
parent 27aa247c36
commit f1a0a5966a
3 changed files with 9 additions and 1 deletions
+2
View File
@@ -225,10 +225,12 @@ namespace DataOrganizer
public Folder Parent { get; private set; }
public Dictionary<string, FileSnapshot> Files { get; private set; } = new Dictionary<string, FileSnapshot>();
public Dictionary<string, Folder> Folders { get; private set; } = new Dictionary<string, Folder>();
public bool IsEmpty
{
get { return !(Files.Count > 0 || Folders.Count > 0); }
}
public bool IsRootFolder
{
get { return Parent == null; }