示例#1
0
文件: OSPath.cs 项目: vbjay/cdsf
 public bool Contains(OSPath path) =>
 Normalized.StartsWith(path);
示例#2
0
 protected FolderEntry(OSPath fullPath, OSPath root)
 {
     FullPath = fullPath;
     Root     = root;
 }
示例#3
0
 public Folder(OSPath fullPath, OSPath root)
     : base(fullPath, root)
 {
 }
示例#4
0
 public FolderFile File(OSPath path) =>
 new FolderFile(FullPath + path, Root);
示例#5
0
 public Folder(OSPath fullPath)
     : this(fullPath, OSPath.Empty)
 {
 }