Created
January 14, 2014 00:45
-
-
Save iberianpig/8410970 to your computer and use it in GitHub Desktop.
Windowsでサイズ指定のテストファイルを作成するときに。下記例はLinuxでいう所の dd if=/dev/null of=output 15MB.txt bs=1024 count=15000
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Tips]Windowsでの任意サイズのテストファイル作成 | |
コマンドプロンプトを管理者権限で実行 | |
fsutil file createnew 任意パス\任意ファイル名 任意byte | |
C:\Windows\system32>fsutil file createnew C:\Users\UserName\output_15MB.txt 15360000 | |
ファイル C:\Users\UserName\output_15MB.txt が作成されました | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment