S3FileSystemProvider
Wisej.Ext.FileSystem.S3FileSystemProvider
Namespace: Wisej.Ext.FileSystem
Assembly: Wisej.Ext.FileSystem.AmazonS3 (2.0.0.0)
Implementation of the Amazon S3 file system. Provides access to the S3 storage as a file system.
public class S3FileSystemProvider : IFileSystemProvider
Constructors
S3FileSystemProvider()

Initializes a blank instance of S3FileSystemProvider.
S3FileSystemProvider(root, name)

Creates a new instance of the S3FileSystemProvider class with the specified root and name . The root is added in front of all path arguments passed to all methods in this class.
The root path is also the current directory path.
Properties
AccessKey

String Returns or sets the S3 Access Key.
AccessSecret

String Returns or sets the S3 Access Secret string.
Icon

Image Returns or sets the icon that represents the file system.
IconSource

String Returns or sets the icon name or URL that represents the file system.
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.
For the S3 file system, the first name in the root path is the bucket name. i.e.: this.Root = "BUCKET_NAME\folder1\folder2";
Methods
Contains(path)

Checks whether the specified path starts with the Name of this file system provider.
Parameter
Type
Description
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
DeleteDirectory(path, recursive)

Deletes the specified directory and, optionally, sub-directories.
DeleteFile(path)

Deletes the specified file.
Parameter
Type
Description
Exists(path)

Returns whether the specified file or directory exists.
Parameter
Type
Description
Returns: Boolean. True of the file or directory exists.
GetAttributes(path)

Returns the FileAttributes for the specified path .
Parameter
Type
Description
Returns: FileAttributes. An instance of FileAttributes with the relevant flags set.
GetCreationTime(path)

Returns the file's creation time.
Parameter
Type
Description
Returns: DateTime. A DateTime representing the timestamp of the file creation.
The Amazon S3 file system only returns the LastModified date.
GetDirectories(path, pattern, searchOption)

Returns a list of directory paths that match the pattern and search options in the specified path.
Parameter
Type
Description
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
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
Returns: Int64.
GetLastWriteTime(path)

Returns the last write timestamp for the specified file.
Parameter
Type
Description
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
Returns: String. The physical path for the IFileSystemProvider implementation.
OpenFileStream(path, mode, access)

Opens the specified file for reading or writing.
Parameter
Type
Description
Returns: Stream. A Stream that can be used to read or write the content of the file.
RenameDirectory(path, newName)

Renames the specified directory.
RenameFile(path, newName)

Renames the specified file.
Last updated
Was this helpful?