Buscar archivos en una carpeta y luego copiarlos a otra


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. REM editar el path y la búsqueda.
  2. dir \\server\directorio\de\origen\*busqueda* /b >> temp.txt
  3.  
  4. REM editar el path de origen (igual al anterior) y de destino
  5. for /f %%f in (to_copy.txt) do (
  6. xcopy /y \\server\directorio\de\origen\%%f c:\directorio\de\destino
  7. )
  8. del temp.txt
  9. PAUSE

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.