hiding folder using command

4 次查看(过去 30 天)
ankur
ankur 2011-11-2
how may i hide a folder containing some data using command itself.. either through visibility or something else...??

回答(2 个)

Amith Kamath
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! :)

Jan
Jan 2011-11-2
fileattrib(FolderName, '+h');

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by