예제 #1
0
 public Folder(string rootPath, string parentPath, string folderName)
 {
     RootPath = rootPath;
     Path = PathUtils.Combine(parentPath, folderName);
 }
예제 #2
0
 public Page(string rootPath, string parentPath, string pageName)
 {
     RootPath = rootPath;
     Path     = PathUtils.Combine(parentPath, pageName);
 }