代码 /* 需要引入头文件 #include <io.h> 存在返回 true ,不存在返回 false */ BOOL isFileOrDirExist(PCHAR name) { return _access(name, 0) == 0 ? TRUE : FALSE; }