Add documentation about deleting files.

This commit is contained in:
Franz Liedke 2012-07-16 14:57:35 +03:00
parent 25b8bd889b
commit b973c25905
1 changed files with 8 additions and 0 deletions

View File

@ -4,6 +4,7 @@ ## Contents
- [Reading Files](#get)
- [Writing Files](#put)
- [Removing files](#delete)
- [File Uploads](#upload)
- [File Extensions](#ext)
- [Checking File Types](#is)
@ -29,6 +30,13 @@ #### Appending to a file:
File::append('path/to/file', 'appended file content');
<a name="delete"></a>
## Removing Files
#### Deleting a single file:
File::delete('path/to/file');
<a name="upload"></a>
## File Uploads