Definition at line 21 of file LocalFileSystem.cs.
string Deveel.Data.Store.LocalFileSystem.CombinePath |
( |
string |
path1, |
|
|
string |
path2 |
|
) |
| |
|
inline |
void Deveel.Data.Store.LocalFileSystem.CreateDirectory |
( |
string |
path | ) |
|
|
inline |
IFile IFileSystem. Deveel.Data.Store.LocalFileSystem.CreateFile |
( |
string |
path | ) |
|
|
inlineprivate |
LocalFile Deveel.Data.Store.LocalFileSystem.CreateFile |
( |
string |
fileName | ) |
|
|
inline |
Implements Deveel.Data.Store.IFileSystem.
Definition at line 41 of file LocalFileSystem.cs.
42 if (
String.IsNullOrEmpty(fileName))
43 throw new ArgumentNullException(
"fileName");
46 throw new IOException(
string.Format(
"The file '{0}' already exists: cannot create.", fileName));
48 return new LocalFile(fileName,
false);
A long string in the system.
bool FileExists(string path)
bool Deveel.Data.Store.LocalFileSystem.DeleteFile |
( |
string |
path | ) |
|
|
inline |
bool Deveel.Data.Store.LocalFileSystem.DirectoryExists |
( |
string |
path | ) |
|
|
inline |
bool Deveel.Data.Store.LocalFileSystem.FileExists |
( |
string |
path | ) |
|
|
inline |
long Deveel.Data.Store.LocalFileSystem.GetFileSize |
( |
string |
path | ) |
|
|
inline |
IFile IFileSystem. Deveel.Data.Store.LocalFileSystem.OpenFile |
( |
string |
path, |
|
|
bool |
readOnly |
|
) |
| |
|
inlineprivate |
LocalFile Deveel.Data.Store.LocalFileSystem.OpenFile |
( |
string |
fileName, |
|
|
bool |
readOnly |
|
) |
| |
|
inline |
Implements Deveel.Data.Store.IFileSystem.
Definition at line 30 of file LocalFileSystem.cs.
32 throw new IOException(
string.Format(
"The file '{0}' does not exist: cannot be opened", fileName));
34 return new LocalFile(fileName, readOnly);
bool FileExists(string path)
bool Deveel.Data.Store.LocalFileSystem.RenameFile |
( |
string |
sourcePath, |
|
|
string |
destPath |
|
) |
| |
|
inline |
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb/Deveel.Data.Store/LocalFileSystem.cs