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); }
public void SetWorkingDirectory(string path) { this.local = new StorageStubLocal(path.Backslash(), this.trees); }