7

我对 stat.h 有一个非常奇怪的问题

在我的代码顶部,我有声明:

#include <sys\types.h> 
#include <sys\stat.h> 

和函数原型:

int FileSize(string szFileName);

最后,函数本身定义如下:

int FileSize(string szFileName)
{
  struct stat fileStat; 
  int err = stat( szFileName.c_str(), &fileStat ); 
  if (0 != err) return 0; 
  return fileStat.st_size;
}

当我尝试编译此代码时,出现错误:

divide.cpp: In function 'int FileSize(std::string)':
divide.cpp:216: error: aggregate 'stat fileStat' has incomplete type and cannot be defined
divide.cpp:217: error: invalid use of incomplete type 'struct stat'
divide.cpp:216: error: forward declaration of 'struct stat'

从这个线程:如何在 C 中获取文件的大小? 我认为这段代码应该可以工作,但我不知道为什么它不能编译。谁能发现我做错了什么?

4

1 回答 1

6

\的应该是/还是我只是对你的环境感到困惑?

UNIX 手册页:

 #include <fcntl.h>
 #include <sys/types.h>
 #include <sys/stat.h>

 int stat(const char *restrict path, struct stat *restrict buf);

如果你在 Windows 上(我猜你可能是因为\'s),那么我无能为力,因为我什至不知道有stat.

于 2012-02-14T21:23:05.720 回答