Reputation: 81262
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
Reputation: 2069
You can test your webservice by hard with:
It is more automated than doing it by hand and it has a lot of nice monitoring features.
Upvotes: 0
Reputation: 3197
You can use fsutil to do so
The Syntax is:
fsutil file createnew C:\testfile.txt 1000
Upvotes: 4
Reputation: 49354
Try $ /dev/random > myfile1
with different time lengths and namings
Upvotes: 4