Files
syncthing-android/scripts/debug/win/hide-folders-from-notepad++.cmd
Catfriend1 8488dbf42d scripts/debug/win: Add scheduled task
SyncthingDevInstance
Make Notepad++ recognize build intermediate folders as hidden folders on windows.
2025-05-13 14:59:34 +02:00

14 lines
169 B
Batchfile

@echo off
cd ..\..\..
::
attrib +h .git
attrib +h .github
attrib +h .gradle
attrib +h .idea
attrib +h .kotlin
attrib +h app\build
attrib +h build
timeout 3
::
goto :eof