int GetFileNum(addr path);
取指定目录下的文件数
返回指定目录下的文件数。
void main() { printf("根目录下有%d个文件\n", GetFileNum("/")); getchar(); }