C# Класс UnifiedStorage.DotNet.DotNetFileSystem

A IFileSystem implementation base class for the classic .NET System.IO API.
Наследование: IFileSystem
Показать файл Открыть проект

Открытые методы

Метод Описание
CreatePath ( string path ) : IPath

Creates the path object from the given string.

GetDirectoryFromPathAsync ( string path, CancellationToken cancellationToken = newCancellationToken() ) : Task

Gets a folder, given its path.

GetFileFromPathAsync ( string path, CancellationToken cancellationToken ) : Task

Gets a file, given its path.

Описание методов

CreatePath() публичный Метод

Creates the path object from the given string.
public CreatePath ( string path ) : IPath
path string The path to create.
Результат IPath

GetDirectoryFromPathAsync() публичный Метод

Gets a folder, given its path.
public GetDirectoryFromPathAsync ( string path, CancellationToken cancellationToken = newCancellationToken() ) : Task
path string The path to a directory, as returned from the property.
cancellationToken System.Threading.CancellationToken The cancellation token.
Результат Task

GetFileFromPathAsync() публичный Метод

Gets a file, given its path.
public GetFileFromPathAsync ( string path, CancellationToken cancellationToken ) : Task
path string The path to a file, as returned from the property.
cancellationToken System.Threading.CancellationToken The cancellation token.
Результат Task