我正在代码中尝试以下事情:-
{
int y,n_bytes;
struct stat temp_data;
y = fstat(netdev->queue_fd[class_id],&temp_data);
printf("Success - %d , size -> %lld , Error- %d n",y,temp_data.st_size,errno);
n_bytes = write(netdev->queue_fd[class_id],buffer->data,buffer->size);
y = fstat(netdev->queue_fd[class_id],&temp_data);
printf("After write Success - %d , size -> %lld , Error- %d and the value of n_bytes is - %d ",y,temp_data.st_size,errno,n_bytes);
}
我得到的输出是:-
Success - 0, size -> 0 , Error - 11
After write Success - 0, size -> 0, Error - 11 and the value of n_bytes is - 1526
大小为 0 和错误号 11 背后的原因是什么?有没有其他方法可以获取文件大小?
注意:这里Netdev->queue_fd[class_id]
是一个文件描述符。在不同的调用中,n_bytes的值在 {41,1514,66,..} 之间变化。(始终大于 0)
谢谢
-
成功后
errno
的地位无关紧要。errno
的值仅在失败时修改。fstat()
返回零,因此 errno 的值无关紧要。 -
write()
返回什么? 您没有检查,因此您不知道在write()
调用后文件应该更大。
Netdev->queue_fd[class_id]
是
- 常规文件或
- 任何系统/fs 条目或
- 字符/块/网络设备文件?
如果它不是常规文件,则在写入命令后不会更新其大小。
按S_ISREG()
检查文件类型