|
||
int rmdir ( char *path )
char *path; // directory name
|
|
|
Synopsis |
#include "silver.h"
The rmdir function removes the directory given by path .
|
|
Parameters |
path is a null-terminated string specifying the name of the directory to remove.
|
|
Return Value |
rmdir returns 0 if the directory was deleted, and -1 otherwise.
|
|
See Also |
|
|
|
|