Code Block | ||
---|---|---|
| ||
int fs_rmdir (const char *name_full); |
File | Called from | Code enabled by |
---|---|---|
| Application |
|
...
-1, if the directory is not removed.
Notes/Warnings
- A directory can be removed only if it is an empty directory.
- The root directory cannot be removed.
Example
Code Block | ||
---|---|---|
| ||
void App_Fnct (void)
{
int err;
.
.
.
err = fs_rmdir("sd:0:\\data\\old"); /* Remove dir. */
if (err != 0) {
APP_TRACE_INFO(("Could not remove dir."));
}
.
.
.
} |