Skip to content

Instantly share code, notes, and snippets.

@NobleUplift
Last active September 24, 2015 19:09
Show Gist options
  • Save NobleUplift/d0524f901994ecb5e46d to your computer and use it in GitHub Desktop.
Save NobleUplift/d0524f901994ecb5e46d to your computer and use it in GitHub Desktop.
Recursively system hide the same file in a hierarchy. Useful for Folder.jpg and AlbumArt.jpg.
@ECHO OFF
SET DIRECTORY=%1
SET HIDE=%2
FOR /R %DIRECTORY% %%F IN (.) DO (
IF EXIST %%F\%HIDE% (
ATTRIB +S +H "%%F\%HIDE%"
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment