示例#1
0
 public FileManager(string path, LoadOption loadOption)
 {
     this.path       = path;
     this.loadOption = loadOption;
     list            = new VirtualFileList(loadOption);
     imagePath       = list.GetImagePath(path);
 }
示例#2
0
 internal string GetImagePath(string imagePath)
 {
     imagePath = list.GetImagePath(imagePath);
     return(imagePath);
 }