C# 클래스 Drey.Server.Services.FilesytemFileService

상속: IFileService
파일 보기 프로젝트 열기: dealproc/Drey

공개 메소드들

메소드 설명
DeleteAsync ( string filename ) : Task

Deletes a file from the storage medium.

DownloadBlobAsync ( string filename ) : Task

Downloads the file from the storage medium.

EnumerateFilesAsync ( ) : Task>

Enumerates the files on the storage medium.

FilesytemFileService ( string baseFolder ) : System.Collections.Generic
StoreAsync ( string fileName, System stream ) : Task

Stores the provided string with the provided filename.

메소드 상세

DeleteAsync() 공개 메소드

Deletes a file from the storage medium.
public DeleteAsync ( string filename ) : Task
filename string The filename.
리턴 Task

DownloadBlobAsync() 공개 메소드

Downloads the file from the storage medium.
public DownloadBlobAsync ( string filename ) : Task
filename string The uri to access the file.
리턴 Task

EnumerateFilesAsync() 공개 메소드

Enumerates the files on the storage medium.
public EnumerateFilesAsync ( ) : Task>
리턴 Task>

FilesytemFileService() 공개 메소드

public FilesytemFileService ( string baseFolder ) : System.Collections.Generic
baseFolder string
리턴 System.Collections.Generic

StoreAsync() 공개 메소드

Stores the provided string with the provided filename.
public StoreAsync ( string fileName, System stream ) : Task
fileName string Name of the file.
stream System The stream.
리턴 Task