标签:std txt blog file http [] tchar reg 判断
#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
标签:std txt blog file http [] tchar reg 判断
原文地址:http://www.cnblogs.com/findumars/p/7952879.html