Example #1
0
 public Folder(FileSystem root, Folder other) : this(root.Database.Folder)
 {
     CopyFrom(other);
 }
Example #2
0
 public string Description(FileSystem db)
 {
     return($"{db.Folders[ParentFolderIndex].FullPath(db)}\\{Name} | {Length:n0} | {LastModifiedUtc:u}");
 }
Example #3
0
 public Folder(FileSystem root) : this(root.Database.Folder)
 {
 }