DeveelDB
20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
|
Public Member Functions | |
bool | FileExists (string path) |
IFile | OpenFile (string path, bool readOnly) |
IFile | CreateFile (string path) |
bool | DeleteFile (string path) |
string | CombinePath (string path1, string path2) |
bool | RenameFile (string sourcePath, string destPath) |
bool | DirectoryExists (string path) |
void | CreateDirectory (string path) |
long | GetFileSize (string path) |
Definition at line 20 of file IFileSystem.cs.
string Deveel.Data.Store.IFileSystem.CombinePath | ( | string | path1, |
string | path2 | ||
) |
Implemented in Deveel.Data.Store.LocalFileSystem.
void Deveel.Data.Store.IFileSystem.CreateDirectory | ( | string | path | ) |
Implemented in Deveel.Data.Store.LocalFileSystem.
IFile Deveel.Data.Store.IFileSystem.CreateFile | ( | string | path | ) |
Implemented in Deveel.Data.Store.LocalFileSystem, and Deveel.Data.Store.LocalFileSystem.
bool Deveel.Data.Store.IFileSystem.DeleteFile | ( | string | path | ) |
Implemented in Deveel.Data.Store.LocalFileSystem.
bool Deveel.Data.Store.IFileSystem.DirectoryExists | ( | string | path | ) |
Implemented in Deveel.Data.Store.LocalFileSystem.
bool Deveel.Data.Store.IFileSystem.FileExists | ( | string | path | ) |
Implemented in Deveel.Data.Store.LocalFileSystem.
long Deveel.Data.Store.IFileSystem.GetFileSize | ( | string | path | ) |
Implemented in Deveel.Data.Store.LocalFileSystem.
IFile Deveel.Data.Store.IFileSystem.OpenFile | ( | string | path, |
bool | readOnly | ||
) |
Implemented in Deveel.Data.Store.LocalFileSystem, and Deveel.Data.Store.LocalFileSystem.
bool Deveel.Data.Store.IFileSystem.RenameFile | ( | string | sourcePath, |
string | destPath | ||
) |
Implemented in Deveel.Data.Store.LocalFileSystem.