Method | Description | |
---|---|---|
Combine ( string path1, string path2 ) : string |
Combines to paths.
|
|
CreateFile ( string path ) : IStorageFile |
Creates a file in the storage provider.
|
|
CreateFolder ( string path ) : void |
Creates a folder in the storage provider.
|
|
DeleteFile ( string path ) : void |
Deletes a file in the storage provider.
|
|
DeleteFolder ( string path ) : void |
Deletes a folder in the storage provider.
|
|
FileSystemStorageProvider ( |
||
GetFile ( string path ) : IStorageFile |
Retrieves a file within the storage provider.
|
|
GetPublicUrl ( string path ) : string |
Retrieves the public URL for a given file within the storage provider.
|
|
ListFiles ( string path ) : IEnumerable |
Lists the files within a storage provider's path.
|
|
ListFolders ( string path ) : IEnumerable |
Lists the folders within a storage provider's path.
|
|
RenameFile ( string oldPath, string newPath ) : void |
Renames a file in the storage provider.
|
|
RenameFolder ( string oldPath, string newPath ) : void |
Renames a folder in the storage provider.
|
|
SaveStream ( string path, Stream inputStream ) : void |
Saves a stream in the storage provider.
|
|
TryCreateFolder ( string path ) : bool |
Tries to create a folder in the storage provider.
|
|
TrySaveStream ( string path, Stream inputStream ) : bool |
Tries to save a stream in the storage provider.
|
Method | Description | |
---|---|---|
Fix ( string path ) : string | ||
IsHidden ( |
||
MapPublic ( string path ) : string |
Maps a relative path into the public path.
|
|
MapStorage ( string path ) : string |
Maps a relative path into the storage path.
|
public Combine ( string path1, string path2 ) : string | ||
path1 | string | The parent path. |
path2 | string | The child path. |
return | string |
public CreateFile ( string path ) : IStorageFile | ||
path | string | The relative path to the file to be created. |
return | IStorageFile |
public CreateFolder ( string path ) : void | ||
path | string | The relative path to the folder to be created. |
return | void |
public DeleteFile ( string path ) : void | ||
path | string | The relative path to the file to be deleted. |
return | void |
public DeleteFolder ( string path ) : void | ||
path | string | The relative path to the folder to be deleted. |
return | void |
public FileSystemStorageProvider ( |
||
settings | ||
return | System |
public GetFile ( string path ) : IStorageFile | ||
path | string | The relative path to the file within the storage provider. |
return | IStorageFile |
public GetPublicUrl ( string path ) : string | ||
path | string | The relative path within the storage provider. |
return | string |
public ListFiles ( string path ) : IEnumerable |
||
path | string | The relative path to the folder which files to list. |
return | IEnumerable |
public ListFolders ( string path ) : IEnumerable |
||
path | string | The relative path to the folder which folders to list. |
return | IEnumerable |
public RenameFile ( string oldPath, string newPath ) : void | ||
oldPath | string | The relative path to the file to be renamed. |
newPath | string | The relative path to the new file. |
return | void |
public RenameFolder ( string oldPath, string newPath ) : void | ||
oldPath | string | The relative path to the folder to be renamed. |
newPath | string | The relative path to the new folder. |
return | void |
public SaveStream ( string path, Stream inputStream ) : void | ||
path | string | The relative path to the file to be created. |
inputStream | Stream | The stream to be saved. |
return | void |
public TryCreateFolder ( string path ) : bool | ||
path | string | The relative path to the folder to be created. |
return | bool |
public TrySaveStream ( string path, Stream inputStream ) : bool | ||
path | string | The relative path to the file to be created. |
inputStream | Stream | The stream to be saved. |
return | bool |