gpt4 book ai didi

c++ - 如何在不打开的情况下获得最大文件的大小?

转载 作者:可可西里 更新时间:2023-11-01 10:58:09 25 4
gpt4 key购买 nike

我知道有 <sys/stat.h> header 但是:

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。

最佳答案

虽然有一个 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;
}

关于c++ - 如何在不打开的情况下获得最大文件的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32117975/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com