Class StorageHelper
Class providing helper methods for storage providers management.
public static class StorageHelper
- Inheritance
-
objectStorageHelper
Methods
CopyFileAcrossProviders(string, string)
Copies two files across different storage providers
public static void CopyFileAcrossProviders(string sourceFileName, string destFileName)
Parameters
sourceFileName
stringSource path
destFileName
stringDestination path
DeleteOldFiles(DirectoryInfo, DateTime, bool, bool, Func<string, string, bool>)
Deletes files older than specified time from the file system.
public static void DeleteOldFiles(DirectoryInfo dir, DateTime olderThan, bool deleteEmptyFolder = true, bool recursively = true, Func<string, string, bool> deleteFileCallback = null)
Parameters
dir
DirectoryInfoDirectory to process
olderThan
DateTimeLimit time for deletion of a file
deleteEmptyFolder
boolIndicates if the specified folder should be deleted if there are no files left at the end
recursively
boolIndicates if the subfolders of the folder are to be processed.
deleteFileCallback
Func<string, string, bool>Callback accepting folder name and file respectively and returning a value indicating whether the file is to be deleted.
GetDirectoryInfo(string)
Returns new instance of directory info.
public static DirectoryInfo GetDirectoryInfo(string path)
Parameters
path
stringPath
Returns
GetFileInfo(string)
Returns new instance of FileInfo object.
public static FileInfo GetFileInfo(string filename)
Parameters
filename
stringFile name
Returns
GetFileStream(string, FileMode)
Returns new instance of file stream.
public static FileStream GetFileStream(string path, FileMode mode)
Parameters
path
stringPath to file
mode
FileModeFile mode
Returns
GetFileStream(string, FileMode, FileAccess)
Returns new instance of file stream.
public static FileStream GetFileStream(string path, FileMode mode, FileAccess access)
Parameters
path
stringPath to file
mode
FileModeFile mode
access
FileAccessFile access
Returns
GetFileStream(string, FileMode, FileAccess, FileShare)
Returns new instance of file stream.
public static FileStream GetFileStream(string path, FileMode mode, FileAccess access, FileShare share)
Parameters
path
stringPath to file
mode
FileModeFile mode
access
FileAccessFile access
share
FileShareSharing permissions
Returns
GetFileStream(string, FileMode, FileAccess, FileShare, int)
Returns new instance of file stream.
public static FileStream GetFileStream(string path, FileMode mode, FileAccess access, FileShare share, int bufferSize)
Parameters
path
stringPath to file
mode
FileModeFile mode
access
FileAccessFile access
share
FileShareSharing permissions
bufferSize
intBuffer size
Returns
GetFullFilePhysicalPath(string, string)
Returns full physical path of a file or folder. Does not change the ending slash
public static string GetFullFilePhysicalPath(string path, string webFullPath = null)
Parameters
path
stringPath
webFullPath
stringFull path to the root of the web project (e.g. c:\WebProject)
Returns
- string
GetFullFolderPhysicalPath(string, string)
Returns full physical path for a folder. Ensures the trailing backslash
public static string GetFullFolderPhysicalPath(string path, string webFullPath = null)
Parameters
path
stringPath
webFullPath
stringFull path to the root of the web project (e.g. c:\WebProject)
Returns
- string
GetStorageProvider(string)
Gets the storage provider based on the given path, updates the path so it matches the provider internal structure
public static AbstractStorageProvider GetStorageProvider(string path)
Parameters
path
stringInput path, output is path relative to the returned storage provider
Returns
GetWebApplicationRelativePath(string)
Converts the given physical path to an application relative path
public static string GetWebApplicationRelativePath(string path)
Parameters
path
stringPath to convert
Returns
- string
IsExternalStorage(string)
Returns whether the path is targeting an external storage.
public static bool IsExternalStorage(string path)
Parameters
path
stringFile path to check (virtual or physical)
Returns
- bool
IsSameStorageProvider(string, string)
Returns true, if two given paths use the same storage provider
public static bool IsSameStorageProvider(string path1, string path2)
Parameters
path1
stringFirst file path
path2
stringSecond file path
Returns
- bool
IsSharedStorage(string)
Returns whether the path is targeting a shared storage.
public static bool IsSharedStorage(string path)
Parameters
path
stringFile path to check (virtual or physical)
Returns
- bool
MapStoragePath(string, AbstractStorageProvider)
Maps the given storage path to a specific provider
public static void MapStoragePath(string path, AbstractStorageProvider provider)
Parameters
path
stringPath to map, e.g. ~/App_Data
provider
AbstractStorageProviderProvider to use for the given path and sub paths
MoveFileAcrossProviders(string, string)
Copies two files across different storage providers
public static void MoveFileAcrossProviders(string sourceFileName, string destFileName)
Parameters
sourceFileName
stringSource path
destFileName
stringDestination path
SaveFileToDisk(string, BinaryDataWrapper, bool)
Saves the given file to the disk file
public static void SaveFileToDisk(string filePath, BinaryDataWrapper data, bool closeStream = true)
Parameters
filePath
stringFile path
data
BinaryDataWrapperFile data
closeStream
boolIf true, and source data is stream, the stream gets closed
UnMapStoragePath(string)
Removes the mapping to a storage provider
public static AbstractStorageProvider UnMapStoragePath(string path)
Parameters
path
stringPath to unmap