Facebook
From Unique Hog, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 241
  1. @echo off
  2. cls
  3. if not exist ".\KOPIA_A" mkdir ".\KOPIA_A"
  4.  
  5. set zrodlo=.\
  6. set cel=.\KOPIA_A
  7. set pliki=a?????.*
  8. for /f "delims=" %%f in ('dir /a-d /b /s "%zrodlo%\%pliki%"') do (
  9. copy /V "%%f" "%cel%\" 2>nul
  10. )