Wisej.Core.FileSystemProvider
Namespace: Wisej.Core
Assembly: Wisej.Framework (3.0.0.0)
Default implementation of IFileSystemProvider. Provides access to the server's file system.
The root path is also the current directory path.
path
Path of the file to check.
Creates the specified directory and sub-directories.
path
Path of the directory to create.
Deletes the specified directory and, optionally, sub-directories.
path
Path of the directory to delete.
recursive
Indicates whether to delete sub directories.
Deletes the specified file.
path
Path of the file to delete.
Returns whether the specified file or directory exists.
path
Path of the file or directory to check.
Returns: Boolean. True of the file or directory exists.
Returns the FileAttributes for the specified path .
Returns: FileAttributes. An instance of FileAttributes with the relevant flags set.
Returns the file's creation time.
Returns: DateTime. A DateTime representing the timestamp of the file creation.
Returns a list of directory paths that match the pattern and search options in the specified path.
Returns: String[]. A Array containing the full path of the directories that match the search pattern and search options.
Returns a list of file paths that match the pattern and search options in the specified path.
Returns: String[]. A Array containing the full path of the files that match the search pattern and search options.
Returns the size of the file.
Returns: Int64.
Returns the last write timestamp for the specified file.
Returns: DateTime. A DateTime representing the timestamp of the last time the file was written.
Maps the virtual path to the corresponding physical path on the specific IFileSystemProvider implementation.
Returns: String. The physical path for the IFileSystemProvider implementation.
Opens the specified file for reading or writing.
Returns: Stream. A Stream that can be used to read or write the content of the file.
Renames the specified directory.
Renames the specified file.
Abstracts access to the file system. Implementations of this interface are used by the file dialogs and other components that need to interact with the file system. Wisej provides the built-in default implementation for the standard disk-based file system and a number of alternative implementations in the Wisej extensions, such as: Amazon S3, Google Drive, and Microsoft OneDrive.