C# 클래스 Cirrious.MvvmCross.Plugins.File.WindowsPhone.MvxIsolatedStorageFileStore

상속: IMvxFileStore
파일 보기 프로젝트 열기: Everbridge/sm-MvvmCross

공개 메소드들

메소드 설명
DeleteFile ( string path ) : void
DeleteFolder ( string folderPath, bool recursive ) : void
EnsureFolderExists ( string folderPath ) : void
Exists ( string path ) : bool
FolderExists ( string folderPath ) : bool
GetFilesIn ( string folderPath ) : IEnumerable
GetFoldersIn ( string folderPath ) : IEnumerable
NativePath ( string path ) : string
OpenRead ( string path ) : Stream
OpenWrite ( string path ) : Stream
PathCombine ( string items0, string items1 ) : string
TryMove ( string from, string to, bool deleteExistingTo ) : bool
TryReadBinaryFile ( string path, Byte &contents ) : bool
TryReadBinaryFile ( string path, bool>.Func readMethod ) : bool
TryReadTextFile ( string path, string &contents ) : bool
WriteFile ( string path, Action writeMethod ) : void
WriteFile ( string path, IEnumerable contents ) : void
WriteFile ( string path, string contents ) : void

비공개 메소드들

메소드 설명
DeleteFolderNonRecursive ( string folderPath ) : void
DeleteFolderRecursive ( string folderPath ) : void
TryReadFileCommon ( string path, bool>.Func streamAction ) : bool
WriteFileCommon ( string path, Action streamAction ) : void

메소드 상세

DeleteFile() 공개 메소드

public DeleteFile ( string path ) : void
path string
리턴 void

DeleteFolder() 공개 메소드

public DeleteFolder ( string folderPath, bool recursive ) : void
folderPath string
recursive bool
리턴 void

EnsureFolderExists() 공개 메소드

public EnsureFolderExists ( string folderPath ) : void
folderPath string
리턴 void

Exists() 공개 메소드

public Exists ( string path ) : bool
path string
리턴 bool

FolderExists() 공개 메소드

public FolderExists ( string folderPath ) : bool
folderPath string
리턴 bool

GetFilesIn() 공개 메소드

public GetFilesIn ( string folderPath ) : IEnumerable
folderPath string
리턴 IEnumerable

GetFoldersIn() 공개 메소드

public GetFoldersIn ( string folderPath ) : IEnumerable
folderPath string
리턴 IEnumerable

NativePath() 공개 메소드

public NativePath ( string path ) : string
path string
리턴 string

OpenRead() 공개 메소드

public OpenRead ( string path ) : Stream
path string
리턴 Stream

OpenWrite() 공개 메소드

public OpenWrite ( string path ) : Stream
path string
리턴 Stream

PathCombine() 공개 메소드

public PathCombine ( string items0, string items1 ) : string
items0 string
items1 string
리턴 string

TryMove() 공개 메소드

public TryMove ( string from, string to, bool deleteExistingTo ) : bool
from string
to string
deleteExistingTo bool
리턴 bool

TryReadBinaryFile() 공개 메소드

public TryReadBinaryFile ( string path, Byte &contents ) : bool
path string
contents Byte
리턴 bool

TryReadBinaryFile() 공개 메소드

public TryReadBinaryFile ( string path, bool>.Func readMethod ) : bool
path string
readMethod bool>.Func
리턴 bool

TryReadTextFile() 공개 메소드

public TryReadTextFile ( string path, string &contents ) : bool
path string
contents string
리턴 bool

WriteFile() 공개 메소드

public WriteFile ( string path, Action writeMethod ) : void
path string
writeMethod Action
리턴 void

WriteFile() 공개 메소드

public WriteFile ( string path, IEnumerable contents ) : void
path string
contents IEnumerable
리턴 void

WriteFile() 공개 메소드

public WriteFile ( string path, string contents ) : void
path string
contents string
리턴 void