remove.c 219 字节
Newer Older
C
c00346986 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include "fs/fs.h"
#include "fs/file.h"

int remove(const char *path)
{
	int r = unlink(path);
	if (r==-EISDIR) r = rmdir(path);
	return r;
}