【发布时间】:2012-08-20 18:20:30
【问题描述】:
我有这个代码 sn-p:
struct stat *fileData;
if((fd=open("abc.txt",O_RDONLY)==-1)
perror("file not opened");
if((fstat(fd,fileData)==-1)
perror("stucture not filled");
printf("%d",fileData.st_size);
它显示错误:
request for member ‘st_size’ in something not a structure or union
我也尝试使用stat。
【问题讨论】: