Example #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);
 }
Example #2
0
 public void SetTempDirectory(string path)
 {
     this.temp = new StorageStubTemp(path.Backslash(), this.trees);
 }