我知道有<sys/stat.h>
标题,但是:
struct stat
{
dev_t st_dev; /* ID of device containing file */
ino_t st_ino; /* inode number */
mode_t st_mode; /* protection */
nlink_t st_nlink; /* number of hard links */
uid_t st_uid; /* user ID of owner */
gid_t st_gid; /* group ID of owner */
dev_t st_rdev; /* device ID (if special file) */
off_t st_size; /* total size, in bytes */
blksize_t st_blksize; /* blocksize for file system I/O */
blkcnt_t st_blocks; /* number of blocks allocated */
time_t st_atime; /* time of last access */
time_t st_mtime; /* time of last modification */
time_t st_ctime; /* time of last status change */
};
且off_t
的最大值为2147483647
(在我的机器上)且小于2GB。
还有其他方法吗?
我的操作系统是Win32。
答案 0 :(得分:4)
虽然有一个与POSIX兼容的stat64功能,但它在Windows上不可用(如另一个答案所述,但是有一个_stat64功能)。
在Windows中使用的最合适的功能是GetFileAttributesEx。
例如:
BOOL result;
WIN32_FILE_ATTRIBUTE_DATA fad;
LONGLONG filesize;
result = GetFileAttributesEx(filename, GetFileExInfoStandard, &fad);
if (result) {
filesize = ((LONGLONG)fad.nFileSizeHigh << 32) + fad.nFileSizeLow;
}
答案 1 :(得分:3)
对于Windows上的文件操作,您有两种选择。
_stat64
;相反,它使用#define
使stat
具有64位功能。)