gpt4 book ai didi

c++ - Win32 文件 IO 工作但 fopen 等。阿尔。失败。这里发生了什么?

转载 作者:可可西里 更新时间:2023-11-01 11:28:17 27 4
gpt4 key购买 nike

以前从来没有过。如果我使用 fopen() 等函数从磁盘读取文件,fopen 会成功,但 FILE * 内容看起来有点 NULL-ish。然后我尝试 fseek(SEEK_END) 并报告文件大小为 0 字节。

如果我对 CreateFile()、GetFileSize()、ReadFile() 执行相同的操作,它就会起作用。相同的功能,相同的路径...

VS2013社区版,Win7 x64,64位编译。我测试的文件很小(从不超过 400 字节)。它们位于 E: 盘 (E:\temp),这是一个本地分区。

我有什么想法需要焊接我的电脑来解决这个问题吗? :)

static void LoadFile(const std::string &path, std::string& target)
{
#if 1
HANDLE hFile = ::CreateFileA(path.c_str(), FILE_READ_ACCESS, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
finally finallyClose([&hFile](){ ::CloseHandle(hFile); });
if (INVALID_HANDLE_VALUE != hFile)
{
DWORD fileSize = ::GetFileSize(hFile, NULL);
target.resize(fileSize);
DWORD bytesRead = 0UL;
BOOL success = ::ReadFile(hFile, &target[0], fileSize, &bytesRead, NULL);
}
else
{
std::cout << "Could not load file: " << path << std::endl;
}

#else
FILE * inFile = NULL;
errno_t err = fopen_s(&inFile, path.c_str(), "rb");

if (NULL != inFile)
{
finally finallyClose([&inFile](){ fclose(inFile); });

int fileSize = fseek(inFile, 0, SEEK_END);
fseek(inFile, 0, SEEK_SET);
target.resize(fileSize);
fread(&target[0], sizeof(char), fileSize, inFile);
}
else
{
std::cout << "Could not load file: " << path << std::endl;
}
#endif
}

最佳答案

fseek 函数在成功时返回 0。它不返回文件指针移动的字节数。

http://en.cppreference.com/w/c/io/fseek

您需要调用 ftell 来取回文件大小。

http://en.cppreference.com/w/c/io/ftell

fseek(inFile, 0, SEEK_END);
int filesize = ftell(inFile);
target.resize(filesize);

关于c++ - Win32 文件 IO 工作但 fopen 等。阿尔。失败。这里发生了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28251576/

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