Beispiel #1
0
 public bool Contains(OSPath path) =>
 Normalized.StartsWith(path);
Beispiel #2
0
 protected FolderEntry(OSPath fullPath, OSPath root)
 {
     FullPath = fullPath;
     Root     = root;
 }
Beispiel #3
0
 public Folder(OSPath fullPath, OSPath root)
     : base(fullPath, root)
 {
 }
Beispiel #4
0
 public FolderFile File(OSPath path) =>
 new FolderFile(FullPath + path, Root);
Beispiel #5
0
 public Folder(OSPath fullPath)
     : this(fullPath, OSPath.Empty)
 {
 }