How to create a password protected zip file using matlab?
Ältere Kommentare anzeigen
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)
2 Kommentare
David Hill
am 6 Jun. 2020
Recommend encrypting file before zipping.
Partha Mitra
am 6 Jun. 2020
Antworten (1)
Walter Roberson
am 6 Jun. 2020
! 7z a archive.7z -psecret *.mat
or
system('7z a archive.7z -psecret *.mat')
4 Kommentare
Partha Mitra
am 7 Jun. 2020
Partha Mitra
am 7 Jun. 2020
Partha Mitra
am 7 Jun. 2020
Walter Roberson
am 7 Jun. 2020
Using an exact path like you did is often a good idea for reliability... on any one system... but unfortunately not always portable.
Kategorien
Mehr zu Scope Variables and Generate Names finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!