这里会显示出您选择的修订版和当前版本之间的差别。
— |
note:spoony:快速创建空白大文件 [2016/12/27 23:37] (当前版本) Spoony 创建 |
||
---|---|---|---|
行 1: | 行 1: | ||
+ | ====== 快速创建空白大文件 ====== | ||
+ | |||
+ | 方法一:cmd | ||
+ | |||
+ | fsutil file createnew c:\100MBfile.txt 104857600 | ||
+ | |||
+ | 方法二: | ||
+ | |||
+ | You can use the Sysinternals Contig tool. It has a -n switch which creates a new file of a given size. It will create a file almost instantaneous. | ||
+ | |||
+ | 快速创建空白大文件用法:Contig.exe -n D:\wamp\1.tmp 2147483648 |