标签:str stream style color 命令 log origin 大小 code
实现类似Linux下的dd命令:
$tempFile="C:\test1" $fs=New-Object System.IO.FileStream($tempFile,[System.IO.FileMode]::OpenOrCreate) $fs.Seek(2GB,[System.IO.SeekOrigin]::Begin) $fs.WriteByte(0) $fs.Close()
标签:str stream style color 命令 log origin 大小 code
原文地址:http://www.cnblogs.com/IvanChen/p/6794990.html