Last active
October 20, 2016 09:27
-
-
Save CyberBison/806c4b0004ab0c1c585a75acd78edb60 to your computer and use it in GitHub Desktop.
This is a (very) small script to copy files to another directory (like a shared one) and then move it in another directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| REM This script will copy all CSV files of the given directory to another location | |
| REM Then it moves files to another directory | |
| xcopy C:\path\to\files\*.csv Z:\path\to\copied\files\ /y | |
| move C:\path\to\files\*.csv C:\path\to\new\location\ /y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment