コード例 #1
0
 public StorageStub()
 {
     this.trees = new List <FileSystemTree>();
     this.local = new StorageStubLocal(@"c:\Users\Develop", this.trees);
     this.temp  = new StorageStubTemp(@"c:\Users\Temp", this.trees);
     this.data  = new StorageStubData(@"c:\Users\Data", this.trees);
 }
コード例 #2
0
 public void SetWorkingDirectory(string path)
 {
     this.local = new StorageStubLocal(path.Backslash(), this.trees);
 }