[C 语言]判断某文件是文件夹还是文件
Posted 朝闻道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[C 语言]判断某文件是文件夹还是文件相关的知识,希望对你有一定的参考价值。
#include <sys/stat.h>
#include <stdio.h>
int _tmain(int argc, _TCHAR* argv[])
{
char* fileName = "D:\\aa.txt";
struct _stat buf;
int result;
result = _stat( fileName, &buf );
if(_S_IFDIR & buf.st_mode){
printf("folder\n");
}else if(_S_IFREG & buf.st_mode){
printf("file\n");
}
return 0;
}
http://blog.csdn.net/jaken99/article/details/77657480
以上是关于[C 语言]判断某文件是文件夹还是文件的主要内容,如果未能解决你的问题,请参考以下文章