[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 "); 
}else if(_S_IFREG & buf.st_mode){ 
printf("file "); 


return 0;
}

http://blog.csdn.net/jaken99/article/details/77657480

原文地址:https://www.cnblogs.com/findumars/p/7952879.html