在Windows上创建大文件

前端之家收集整理的这篇文章主要介绍了在Windows上创建大文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要创建一个较大的(1-8 GB)大文件。在Windows上使用C或C最快的方​​法是什么?我需要快速创建它们,速度真的是一个问题。文件将用于存储仿真,即将以不同的偏移量随机访问,我需要所有存储将被预分配但未初始化,目前我们正在使用伪数据写入所有存储,并且耗时太长。

谢谢。

使用Win32 API, CreateFileSetFilePointerExSetEndOfFileCloseHandle.按同样的顺序。

这个技巧在SetFilePointerEx函数中。从MSDN:

Note that it is not an error to set
the file pointer to a position beyond
the end of the file. The size of the
file does not increase until you call
the SetEndOfFile,WriteFile,or
WriteFileEx function.

Windows资源管理器在将文件从一个位置复制到另一个位置时,实际上也是这样做的。它执行此操作,以便磁盘不需要为碎片磁盘重新分配文件

原文链接:https://www.f2er.com/windows/372275.html

猜你在找的Windows相关文章