如果想简单 就直接调用系统命令比如 windows下system("delete xxxx\\*");Linux下system("rm xxxx/*")如果想用纯C接口先opendir 然后循环遍历readdir依次调用remove 函数删除文件。