public override VirtualFolderInfo GetFolderInfo(string virtualFolderPath)
 {
     return(DecoratedFileSystem.GetFolderInfo(virtualFolderPath));
 }
 public override VirtualFolderInfo GetFileSystemRoot()
 {
     return(DecoratedFileSystem.GetFileSystemRoot());
 }
 public override Stream ReadFileContents(string virtualFilePath)
 {
     return(DecoratedFileSystem.ReadFileContents(virtualFilePath));
 }
 public override VirtualFileInfo CopyFile(string virtualFilePath, string destinationPath)
 {
     return(DecoratedFileSystem.CopyFile(virtualFilePath, destinationPath));
 }
 public override string CreateFolderPath(string parentFolder, string folderName)
 {
     return(DecoratedFileSystem.CreateFolderPath(parentFolder, folderName));
 }
 public override void DeleteFile(string virtualFilePath)
 {
     DecoratedFileSystem.DeleteFile(virtualFilePath);
 }
 public override VirtualFolderInfo MoveFolder(string virtualFolderPath, string destinationPath)
 {
     return(DecoratedFileSystem.MoveFolder(virtualFolderPath, destinationPath));
 }
 public override VirtualFileInfo WriteFile(string virtualFilePath, Stream input, bool overwrite, long resourceLength, string contentType)
 {
     return(DecoratedFileSystem.WriteFile(virtualFilePath, input, overwrite, resourceLength, contentType));
 }
 public override void DeleteFolder(string virtualFolderPath)
 {
     DecoratedFileSystem.DeleteFolder(virtualFolderPath);
 }
 public override bool IsFolderAvailable(string virtualFolderPath)
 {
     return(DecoratedFileSystem.IsFolderAvailable(virtualFolderPath));
 }
 public override VirtualFolderInfo CreateFolder(string virtualFolderPath)
 {
     return(DecoratedFileSystem.CreateFolder(virtualFolderPath));
 }
 public override FolderContentsInfo GetFolderContents(string parentFolderPath, string searchPattern)
 {
     return(DecoratedFileSystem.GetFolderContents(parentFolderPath, searchPattern));
 }
 public override FolderContentsInfo GetFolderContents(string parentFolderPath)
 {
     return(DecoratedFileSystem.GetFolderContents(parentFolderPath));
 }
 public override IEnumerable <VirtualFileInfo> GetChildFiles(string parentFolderPath, string searchPattern)
 {
     return(DecoratedFileSystem.GetChildFiles(parentFolderPath, searchPattern));
 }
 public override IEnumerable <VirtualFolderInfo> GetChildFolders(string parentFolderPath)
 {
     return(DecoratedFileSystem.GetChildFolders(parentFolderPath));
 }
 public override VirtualFolderInfo GetFolderParent(string childFolderPath)
 {
     return(DecoratedFileSystem.GetFolderParent(childFolderPath));
 }