Hendrich.org

Windows: Jede n-te (x-te) Datei kopieren

Veröffentlicht: 12.10.2015

Hiermit kann man jede soundsovielte Datei kopieren:

@echo off
set counter=0
for %%f in (*.jpg) do call :copyfile "%%f"
goto :endoffile
:copyfile
   set /a Counter+=1
   set /a X=Counter %% 20
   if %X%==0 copy %1 c:\output
goto :endoffile

Dabei muss man noch die auszuwählenden Dateitypen anpassen (aktuell: *.jpg), das Ausgabeverzeichnis (aktuell: c:\output) und die Häufigkeit (aktuell: 20).