Yes i agree - this is strange requirement.
I miss Quotes ZIP file names contains space (that's reason my script failed)
Thanks for your help - your script works perfect.
Search found 3 matches
- 30 Oct 2013 08:02
- Forum: DOS Batch Forum
- Topic: ZIP files copy
- Replies: 4
- Views: 2554
- 25 Oct 2013 08:12
- Forum: DOS Batch Forum
- Topic: ZIP files copy
- Replies: 4
- Views: 2554
Re: ZIP files copy
i want to copy all files but one at a time. if i use below - it will copy all files same time.
copy "C:\Hotfix\ABC\*.zip" "C:\Hotfix\Test\"
My requirement - i want to copy ZIP files, file by file for every 1 or 2 seconds.
copy "C:\Hotfix\ABC\*.zip" "C:\Hotfix\Test\"
My requirement - i want to copy ZIP files, file by file for every 1 or 2 seconds.
- 24 Oct 2013 13:48
- Forum: DOS Batch Forum
- Topic: ZIP files copy
- Replies: 4
- Views: 2554
ZIP files copy
hi, I am trying to copy ZIP files from one directory to other directory - it's giving problem for me. can you please help. - it's giving error invalid paramater @echo off for /f "tokens=*" %%a in (' dir C:\Hotfix\ABC /b *.ZIP') do ( echo.Copying file '%%a' xcopy '%%a' C:\Hotfix\Test timeou...