How to create a password protected zip file using matlab?
이전 댓글 표시
Query is on : create a password protected zip file using matlab
I already used as below:
7z a archive.7z -psecret *.mat
But I am getting error: Error: Unexpected MATLAB expression. (Used Matlab R2017b)
답변 (1개)
Walter Roberson
2020년 6월 6일
! 7z a archive.7z -psecret *.mat
or
system('7z a archive.7z -psecret *.mat')
댓글 수: 4
Partha Mitra
2020년 6월 7일
Partha Mitra
2020년 6월 7일
Partha Mitra
2020년 6월 7일
Walter Roberson
2020년 6월 7일
Using an exact path like you did is often a good idea for reliability... on any one system... but unfortunately not always portable.
카테고리
도움말 센터 및 File Exchange에서 Encryption / Cryptography에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!