标题: [文件操作] 有什么命令和工具能读取写入二进制数据的文件 [打印本页]
作者: HappyBirthday 时间: 2014-5-27 02:39 标题: 有什么命令和工具能读取写入二进制数据的文件
本帖最后由 HappyBirthday 于 2014-5-28 14:36 编辑
有什么命令和工具能读取写入二进制数据的文件?type等命令都不行,可以不是系统自配的,其他命令行软件exe也可以。findstr不行哦。
可能我没说明白,就像findstr .* file1.mp3>file2.mp3之类的工具
作者: Batcher 时间: 2014-5-27 08:47
http://bbs.bathome.net/thread-6484-1-1.html
作者: CrLf 时间: 2014-5-27 17:25
“纯”批要么 debug 要么像这样:
http://bbs.bathome.net/thread-12347-1-1.html
作者: CrLf 时间: 2014-5-27 17:26
不限制的话,(vbs|js)+ado | powershell 都行
作者: HappyBirthday 时间: 2014-5-28 14:36
本帖最后由 HappyBirthday 于 2014-5-28 14:40 编辑
回复 4# CrLf
谢谢你,可是用powershell具体怎么做呢,我只学过powershell,而且很久了,忘了差不多了。
作者: PowerShell 时间: 2014-5-28 15:51
晚上我就 写贴讲述了
作者: terse 时间: 2014-5-29 12:30
回复 5# HappyBirthday
用powershell 的话- $file = '.\powershell.ZIP'
- $newfile = '.\new_powershell.ZIP'
- #读取
- $text = [io.file]::ReadAllBytes($file)
- $text
- #写入
- [IO.File]::WriteAllBytes($newFile ,$text)
复制代码
作者: HappyBirthday 时间: 2014-5-31 19:33
本帖最后由 HappyBirthday 于 2014-5-31 19:36 编辑
回复 7# terse
谢谢,你用的是IO.File,我想要的是IO.FileStream
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |