如何在 Matlab 中提取和合并文件
我有三个文件 1.zip、1.z01 1.z02。我想将它们提取并加入到一个文件中。 在 Ubuntu 命令行中,我使用 zip -FF name.zip --out name_joinde.zip 我想在 Matlab 中执行此操作,但使用 zip
命令时,我收到 Invalid zip file
错误。我怎样才能合并这个文件?
I have three files 1.zip, 1.z01 1.z02. I would like to extract and join them into a file.
In Ubuntu command line I'm using zip -FF name.zip --out name_joinde.zip
I would like to do this in Matlab, but with the zip
command I'm getting an Invalid zip file
error. How can I joint this files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不可能一次性完成。但使用
zip
和unzip
命令系统地完成此操作很容易:You cannot do it in one shot. But it is easy to do systematically using the
zip
andunzip
commands:尝试使用
命令,然后
Try using the
command first, and then
仅使用
!
或system
直接从 MATLAB 中调用 Ubuntu 命令怎么样?How about just using
!
orsystem
to call the Ubuntu command directly from within MATLAB?