c判断文件夹是否存在
发布网友
发布时间:2022-04-27 05:52
我来回答
共2个回答
热心网友
时间:2022-06-27 05:11
用 _access() 可以判断文件夹或文件是否存在。注意路径用双斜杠。例如:
#include <io.h>#include <stdio.h>#include <stdlib.h>main( ){ /* 检查存在否 */ if( (_access( "D:\\user\\C\\P1", 0 )) != -1 ) printf( "Yes !" );
else printf("No !");return 0;}
热心网友
时间:2022-06-27 05:11
一般都是判断是否能打开 读写吧?