C++判断文件和文件夹
【摘要】
#include <windows.h>
void main()
{ //文件或文件夹都可以判断,最后的\\号有无都没关系 if (-1!=GetFileAttributes("D:\\MyProjects\\临时程序")) //如果文件夹存在, 最后的\\号有无都没关系 printf("文件夹存在\n"); if (-1!=GetFileAttribut...
#include <windows.h>
void main()
{ //文件或文件夹都可以判断,最后的\\号有无都没关系 if (-1!=GetFileAttributes("D:\\MyProjects\\临时程序")) //如果文件夹存在, 最后的\\号有无都没关系 printf("文件夹存在\n"); if (-1!=GetFileAttributes("D:\\MyProjects\\临时程序\\Desktop.ini")) //如果文件存在 printf("文件存在\n"); //重点 //可以区分是路径还是文件,PathIsDirectory返回值必须强制转为(bool) if (true==(bool)PathIsDirectory("D:\\MyProjects\\临时程序")) //最后的\\号有无都没关系 printf("测试PathIsDirectory 文件夹存在\n"); else printf("测试PathIsDirectory 文件夹不存在\n"); //PathFileExists返回值必须强制转为(bool) //文件或文件夹都可以判断,最后的\\号有无都没关系 if (true==(bool)PathFileExists("D:\\MyProjects\\临时程序\\")) //最后的\\号有无都没关系 printf("PathFileExists 文件夹存在\n"); else printf("PathFileExists 文件夹不存在\n"); if (true==(bool)PathFileExists("D:\\MyfProjects\\临时程序\\Desktop.ini")) printf("PathFileExists 文件存在\n"); else printf("PathFileExists 文件不存在\n");
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
太有用了,转自http://www.cnblogs.com/lujin49/p/5034797.html
文章来源: blog.csdn.net,作者:IM-STONE,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/doubleintfloat/article/details/77885771
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)