在C/C++中创建填充零的1GB文件的最快方法是什么?

前端之家收集整理的这篇文章主要介绍了在C/C++中创建填充零的1GB文件的最快方法是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在 Windows操作系统中创建一个填充零的巨大二进制文件.它的大小是给定的.在C/C++中最有效的方法是什么?

解决方法

尝试调用truncate(2):
truncate("/my/file",my_size);

欲获得更多信息,

man 2 truncate

The truncate() and ftruncate() functions cause the regular file named by path or referenced by fd to be truncated to a size of precisely length bytes.

If the file prevIoUsly was larger than this size,the extra data is lost. If the file prevIoUsly was shorter,it is extended,and the extended part reads as null bytes (‘\0’).

如果您正在寻找Windows本机功能,请查看SetEndOfFile,它的功能大致相同.

原文链接:https://www.f2er.com/c/116984.html

猜你在找的C&C++相关文章