Links
Comment on page

FileSystemProvider

Wisej.Core.FileSystemProvider
Namespace: Wisej.Core
Assembly: Wisej.Framework (3.2.0.0)
Default implementation of IFileSystemProvider. Provides access to the server's file system.
C#
VB.NET
public class FileSystemProvider : IFileSystemProvider
Public Class FileSystemProvider
Inherits IFileSystemProvider

Constructors

FileSystemProvider()

Initializes a blank instance of FileSystemProvider.

FileSystemProvider(root, name)

Creates a new instance of the FileSystemProvider class with the specified root and name . The root is added in front of all path arguments passed to all methods in this class.
Name
Type
Description
root
String
The root path of this file system.
name
String
The name of this file system.
The root path is also the current directory path.

Properties

Icon

Image: Returns or sets the icon that represents the file system. (Default: null)

IconSource

String: Returns or sets the icon name or URL that represents the file system. (Default: "resource.wx/icon-storage.svg")

Name

String: Returns or sets the name of this root. This is the name that should be shown to the user.

Root

String: Returns or sets the root path for the file system. All file system operations in the implementation class are expected to be limited to the root.

Methods

Contains(path)

Checks whether the specified path starts with the Name of this file system provider.
Parameter
Type
Description
path
String
Path of the file to check.
Returns: Boolean. True if the specified path starts with the name of this file system provider.

CreateDirectory(path)

Creates the specified directory and sub-directories.
Parameter
Type
Description
path
String
Path of the directory to create.

DeleteDirectory(path, recursive)

Deletes the specified directory and, optionally, sub-directories.
Parameter
Type
Description
path
String
Path of the directory to delete.
recursive
Boolean
Indicates whether to delete sub directories.

DeleteFile(path)

Deletes the specified file.
Parameter
Type
Description
path
String
Path of the file to delete.

Exists(path)

Returns whether the specified file or directory exists.
Parameter
Type
Description
path
String
Path of the file or directory to check.
Returns: Boolean. True of the file or directory exists.

GetAttributes(path)

Returns the FileAttributes for the specified path .
Parameter
Type
Description
path
String
File path for which to retrieve the FileAttributes.
Returns: FileAttributes. An instance of FileAttributes with the relevant flags set.

GetCreationTime(path)

Returns the file's creation time.
Parameter
Type
Description
path
String
Path of the file to query.
Returns: DateTime. A DateTime representing the timestamp of the file creation.

GetDirectories(path, pattern, searchOption)

Returns a list of directory paths that match the pattern and search options in the specified path.
Parameter
Type
Description
path
String
Path to search into.
pattern
String
Wild card pattern to match.
searchOption
One of the SearchOption options.
Returns: String[]. A Array containing the full path of the directories that match the search pattern and search options.

GetFiles(path, pattern, searchOption)

Returns a list of file paths that match the pattern and search options in the specified path.
Parameter
Type
Description
path
String
Path to search into.
pattern
String
Wild card pattern to match.
searchOption
One of the SearchOption options.
Returns: String[]. A Array containing the full path of the files that match the search pattern and search options.

GetFileSize(path)

Returns the size of the file.
Parameter
Type
Description
path
String
Path of the file to query.
Returns: Int64.

GetLastWriteTime(path)

Returns the last write timestamp for the specified file.
Parameter
Type
Description
path
String
Path of the file to query.
Returns: DateTime. A DateTime representing the timestamp of the last time the file was written.

MapPath(path)

Maps the virtual path to the corresponding physical path on the specific IFileSystemProvider implementation.
Parameter
Type
Description
path
String
Virtual path to map to the corresponding physical path.
Returns: String. The physical path for the IFileSystemProvider implementation.

OpenFileStream(path, mode, access)

Opens the specified file for reading or writing.
Parameter
Type
Description
path
String
The path of the file to open.
mode
FileMode
Specified if the file should be opened, created, overwritten or truncated.
access
Specified if the stream should be opened for reading or writing.
Returns: Stream. A Stream that can be used to read or write the content of the file.

RenameDirectory(path, newName)

Renames the specified directory.
Parameter
Type
Description
path
String
Path of the directory to rename.
newName
String
The new directory name.

RenameFile(path, newName)

Renames the specified file.
Parameter
Type
Description
path
String
Path of the file to rename.
newName
String
The new file name.

Implements

Name
Description
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.