Created
March 23, 2018 11:36
-
-
Save YakDriver/53ecd711eeb196ab24ea62c2132029d4 to your computer and use it in GitHub Desktop.
Creates a file filled with null for testing
This file contains hidden or 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
$f = new-object System.IO.FileStream C:\Temp\test.dat, Create, ReadWrite | |
$f.SetLength(40MB) | |
$f.Close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment