创建一定大小的文件
每当我使用 CreateFile() 创建文件时,是否有任何方法可以创建所需大小的文件。
谢谢。
Is there any method to create a file of desired size whenever I create a file using CreateFile().
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
SetEndOfFile 可用于扩展或截断文件。
SetEndOfFile can be used to extend or truncate a file.
我认为(如果你坐在 *nix 盒子前面)你可以使用默认的 low-lewel write() / fsync() API。
问候,
德利
I think (in case you are sitting in front of a *nix box) you can handle this with the default low-lewel write() / fsync() APIs.
Regards,
dley
您可以在提示符下(使用管理员凭据)使用“fsutil file createnew”,后跟文件名和所需的大小(以字节为单位)
you might use, at the prompt (with admin credentials), "fsutil file createnew" followed by the file name and the desired size (in bytes)