added rmdir()

This commit is contained in:
David Anderson
2006-03-30 00:48:58 +00:00
parent fe971497cc
commit deccf7816c
2 changed files with 21 additions and 0 deletions

View File

@ -89,6 +89,11 @@ native fungetc(file, data);
//Return the size of a file
native filesize(const filename[],{Float,Sql,Result,_}:...);
//Attempts to remove a directory.
//Note that you cannot remove a directory that has files on most
// operating systems.
native rmdir(const path[]);
//Delete a file (delete_file macro)
native unlink(const filename[],{Float,Sql,Result,_}:...);