Jump to content

darellaustin_jr

Members
  • Posts

    4
  • Joined

  • Last visited

Reputation

10 Good

About darellaustin_jr

  1. Hi all, I found a solution and it's posted below! Thanks to everyone @echo offset Source=C:\Users\austid02\Desktop\testset Target=C:\Users\austid02\Desktop\test2set MaxLimit=10for /f "tokens=1* delims=[]" %%G in ('dir /A-D /B "%Source%\*.*" ^| find /v /n ""') do ( copy /y "%Source%\%%~nxH" "%Target%" if %%G==%MaxLimit% exit /b 0)
  2. Hey hey, Thanks so much for your time and def understand! This is great and will test this out :-)
  3. Hi there, I know how to do robocopy to copy all files from source to destination, but what I don't know how to do is to set up the syntax of how to select 10 files at a time from a folder every 10 minutes until all files have been copied. I never did batch programming before and i'm learning really on the fly. Any samples of this would be greatly appreciated :-) Thanks
  4. HI All, I'm very new batch programming and have a question about a task. I'm looking to create a batch programming script where I can copy 10 files at a time every 10 minutes to a destination folder until all files have been copied ex: select 1st 10 files to copy over,wait 10 minutes, then copy next 10 files and so on. This is like a for loop, but confused on how to set it up. I've played around with robocopy cmd but I can only copy all files to a destination folder. ex: I want to copy from this drive: C:\Users\austid02\Desktop\test place files into this folder path: C:\Users\austid02\Desktop\test2 thanks in advance very grateful! Darell
×
×
  • Create New...