hiding folder using command
조회 수: 3 (최근 30일)
이전 댓글 표시
how may i hide a folder containing some data using command itself.. either through visibility or something else...??
댓글 수: 0
답변 (2개)
Amith Kamath
2011년 11월 2일
So if you are running windows, I assume system('attrib +s +h +r foldername') when you are in the directory containing the folder will help, or if you are using a unix based system, then all you need to do is to rename the requited folder with a . (period) before it, again by using system('mv foldername .foldername'). I've verified the unix version of this but I cannot do so for windows! Should work though! There is a native function which I just found out about in the other answer! :)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!