Guest User

Untitled

a guest
Dec 13th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. |parent
  2. | |123
  3. | | 123abc.png
  4. | |456
  5. | | 456def.png
  6. | |789
  7. | | 789ghi.png
  8.  
  9. |parent
  10. | 123abc.png
  11. | 456def.png
  12. | 789ghi.png
  13.  
  14. FOR /R "C:Source Folder" %i IN (*.png) DO MOVE "%i" "C:Staging Folder"
  15.  
  16. SetLocal EnableDelayedExpansion
  17. FOR /R "C:Source Folder" %%A IN (*.png) DO (
  18. Set "CurrFile=%%~A"
  19. Set "TMPdp=%%~dpA"
  20. Set "ParFldr=!TMPdp:~0,-1!"
  21. Echo MOVE "%%~A" "!ParFldr!" ) & REM Delete echo to move. Run to test.
Add Comment
Please, Sign In to add comment