Use cmd (bat) to traverse directories all set to hide file * .meta

cd /d %~dp0
cd  dragongame\assets
for /R %%s in (*.meta) do (
echo %%s
attrib  +h %%s
)


 

cocos creator meta file in the project directory are self-generated, looking unsightly is not convenient to find files you want, but it can not be deleted, so all hidden easy. quiet

Guess you like

Origin www.cnblogs.com/nica/p/11882335.html