Windows10に任意のサイズのファイルを作成する方法
書式
fsutil file createnew 【file_name】 【size(byte)】
実行例
① 100バイトのファイルを作成
C:\>fsutil file createnew test100B.txt 100
② 1KBのファイルを作成
C:\>fsutil file createnew test1KB.txt 1024
③ 1MBのファイルを作成
C:\>fsutil file createnew test1MB.txt 1048576
④ 1GBのファイルを作成
C:\>fsutil file createnew test1GB.txt 1073741824