예제 #1
0
 public override VirtualFolderInfo GetFolderInfo(string virtualFolderPath)
 {
     return(DecoratedFileSystem.GetFolderInfo(virtualFolderPath));
 }
예제 #2
0
 public override VirtualFolderInfo GetFileSystemRoot()
 {
     return(DecoratedFileSystem.GetFileSystemRoot());
 }
예제 #3
0
 public override Stream ReadFileContents(string virtualFilePath)
 {
     return(DecoratedFileSystem.ReadFileContents(virtualFilePath));
 }
예제 #4
0
 public override VirtualFileInfo CopyFile(string virtualFilePath, string destinationPath)
 {
     return(DecoratedFileSystem.CopyFile(virtualFilePath, destinationPath));
 }
예제 #5
0
 public override string CreateFolderPath(string parentFolder, string folderName)
 {
     return(DecoratedFileSystem.CreateFolderPath(parentFolder, folderName));
 }
예제 #6
0
 public override void DeleteFile(string virtualFilePath)
 {
     DecoratedFileSystem.DeleteFile(virtualFilePath);
 }
예제 #7
0
 public override VirtualFolderInfo MoveFolder(string virtualFolderPath, string destinationPath)
 {
     return(DecoratedFileSystem.MoveFolder(virtualFolderPath, destinationPath));
 }
예제 #8
0
 public override VirtualFileInfo WriteFile(string virtualFilePath, Stream input, bool overwrite, long resourceLength, string contentType)
 {
     return(DecoratedFileSystem.WriteFile(virtualFilePath, input, overwrite, resourceLength, contentType));
 }
예제 #9
0
 public override void DeleteFolder(string virtualFolderPath)
 {
     DecoratedFileSystem.DeleteFolder(virtualFolderPath);
 }
예제 #10
0
 public override bool IsFolderAvailable(string virtualFolderPath)
 {
     return(DecoratedFileSystem.IsFolderAvailable(virtualFolderPath));
 }
예제 #11
0
 public override VirtualFolderInfo CreateFolder(string virtualFolderPath)
 {
     return(DecoratedFileSystem.CreateFolder(virtualFolderPath));
 }
예제 #12
0
 public override FolderContentsInfo GetFolderContents(string parentFolderPath, string searchPattern)
 {
     return(DecoratedFileSystem.GetFolderContents(parentFolderPath, searchPattern));
 }
예제 #13
0
 public override FolderContentsInfo GetFolderContents(string parentFolderPath)
 {
     return(DecoratedFileSystem.GetFolderContents(parentFolderPath));
 }
예제 #14
0
 public override IEnumerable <VirtualFileInfo> GetChildFiles(string parentFolderPath, string searchPattern)
 {
     return(DecoratedFileSystem.GetChildFiles(parentFolderPath, searchPattern));
 }
예제 #15
0
 public override IEnumerable <VirtualFolderInfo> GetChildFolders(string parentFolderPath)
 {
     return(DecoratedFileSystem.GetChildFolders(parentFolderPath));
 }
예제 #16
0
 public override VirtualFolderInfo GetFolderParent(string childFolderPath)
 {
     return(DecoratedFileSystem.GetFolderParent(childFolderPath));
 }