#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