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