我正在尝试编写一个程序来用文件填充硬盘。这是测试驱动器的可靠性。我写了一个文件,读取它以检查其内容并继续,直到驱动器已满。
但是当我在循环中调用它时,我用来获取驱动器可用空间的函数返回相同的值。我到处寻找,但找不到这个问题的答案。
我写了一个简单的程序来显示这种现象。
int main()
{
for (int i = 0; i < 3; ++i)
{
write128MBFile("F:\\test\\fill\\" + to_string(i));
cout << getFreeSpace("F:\\test\\fill") << endl;
}
}
返回
1 //Meaning that GetDiskFreeSpaceEx was successful
229311180800 //The amount of free bytes left
1
229311180800
1
229311180800
我确认已写入文件。磁盘的可用空间甚至可以在驱动器的属性菜单中正确更新。
以下是getFreeSpace
的代码:
static unsigned __int64 getFreeSpace(const char* dir)
{
ULARGE_INTEGER freeBytesUser;
ULARGE_INTEGER bytes;
ULARGE_INTEGER freeBytesTotal;
int i = GetDiskFreeSpaceEx(dir,&freeBytesUser,&bytes,&freeBytesTotal);
cout << i << endl;
return freeBytesUser.QuadPart;
}
这是write128MBFile的代码:
void write128MBFile(string fileName)
{
int fileSize = 1024*1024*128;
int parts = 8;
int partSize = fileSize / parts;//Buffer of about 16MB
char c = 33;
ofstream outfile;
outfile.open(fileName, ios::binary | ios::trunc);
for (int i = 0; i < parts; i++)
{
char *partToWrite = new char[partSize + 1];
partToWrite[partSize] = '\0';
for (int j = 0; j < partSize; j++)
{
partToWrite[j] = c;
}
outfile << partToWrite;
outfile.flush();
delete partToWrite;
}
outfile.close();
}
不能忘记包含:
#include <iostream>
#include <fstream>
#include <windows.h>
#include <string>
using namespace std;
我没有正确使用该功能吗?我完全不知道造成这种情况的原因。 我有类似用c#编写的东西,它使用DriveInfo类,但这个问题不存在。
答案 0 :(得分:0)
请尝试使用freeBytesTotal。
答案 1 :(得分:0)
对不起,伙计们,Hans Passant是对的,这是一个非常简单的错误。代码覆盖了大小相同的文件,因此可用空间永远不会改变。
对于记录,freeBytesUser和freeBytesTotal都给出了相同的结果。这是在Windows 7 64位上完成的。