Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. @echo off
  2.  
  3. rem set source path
  4. set sourcePath="<your source path>"
  5.  
  6. rem set destination path
  7. set destPath="<your destination path>"
  8.  
  9. rem /E - copy subdirectories, including the empty ones
  10. robocopy "%sourcePath%" "%destPath%" /E
  11.  
  12. echo done copy file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement