C# 클래스 UnifiedStorage.DotNet.DotNetFileSystem

A IFileSystem implementation base class for the classic .NET System.IO API.
상속: IFileSystem
파일 보기 프로젝트 열기: fiveninedigital/UnifiedStorage

공개 메소드들

메소드 설명
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