11
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windowsでテスト用の巨大ファイルを作成する

Last updated at Posted at 2016-09-08

#はじめに
負荷テストや性能測定のために、ギガバイト級の巨大なファイルを作成する方法です

#作り方
fsutil.exe を使います。Windows XP以降には標準で用意されているコマンドです。

Syntax
fsutil file createnew <ファイル名> <サイズ(Bytes)>

testfile.datという名前で、サイズ10GB(10,737,418,240bytes)のファイルを作成する例

sample
fsutil file createnew testfile.dat 10737418240

#注意点

  • NTFSではブロックの予約のみになるので作成はすぐに終わりますが、FAT32の場合はファイルへ書き込みを行うため、それなりの時間が必要です。
  • ファイルの中身はすべてゼロになります。
11
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?