Skip to content

Commit

Permalink
Update file.md MvvmCross#1827
Browse files Browse the repository at this point in the history
  • Loading branch information
jz5 committed May 22, 2017
1 parent 2188f0e commit b0dbc5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/_documentation/plugins/file.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ public interface IMvxFileStore
bool FolderExists(string folderPath);
string PathCombine(string items0, string items1);
string NativePath(string path);

void EnsureFolderExists(string folderPath);
IEnumerable<string> GetFilesIn(string folderPath);
void DeleteFile(string path);
void DeleteFolder(string folderPath, bool recursive);
long GetSize(string path);
DateTime GetLastWriteTimeUtc(string path);
}
```

Expand Down

0 comments on commit b0dbc5f

Please sign in to comment.