JL.
JL.

Reputation: 81262

Program for generating files?

Not sure if this belongs on Stack, SuperUser or ServerFault, so feel free to migate as best fits.

I am testing a web service that sends out files, because of this I need to find a way to automatically create files. Does anyone know of a free file generation tool?

Upvotes: 0

Views: 117

Answers (3)

bastianneu
bastianneu

Reputation: 2069

You can test your webservice by hard with:

JMeter

It is more automated than doing it by hand and it has a lot of nice monitoring features.

Upvotes: 0

Heiko Hatzfeld
Heiko Hatzfeld

Reputation: 3197

You can use fsutil to do so

The Syntax is:

fsutil file createnew C:\testfile.txt 1000

Upvotes: 4

Eimantas
Eimantas

Reputation: 49354

Try $ /dev/random > myfile1 with different time lengths and namings

Upvotes: 4

Related Questions