9 lines
217 B
Batchfile
9 lines
217 B
Batchfile
@echo off
|
|
REM Version: 1.1
|
|
REM Remove hidden mac files from subfolders
|
|
REM Usage information: see readme.txt
|
|
REM Created by Peter Gyetvai: gyetpet@gmail.com with the help of the internet
|
|
|
|
cd %~dp0
|
|
del /s /q /f /a ._*
|