码迷,mamicode.com
首页 > 其他好文 > 详细

创建指定大小的文件

时间:2017-05-02 12:05:55      阅读:113      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!