Search found 4 matches

by vishnuj
25 Mar 2014 23:05
Forum: DOS Batch Forum
Topic: skip already available files destination
Replies: 6
Views: 5980

Re: skip already available files destination

I don't want to remove the old files which is already available in the destination folder. I just want to skip the files which is already available in the destination folder. Suppose i have files name one.txt, two.txt, three.txt, four.txt,. etc in folder1... i want to copy all these files to folder2...
by vishnuj
25 Mar 2014 22:14
Forum: DOS Batch Forum
Topic: skip already available files destination
Replies: 6
Views: 5980

skip already available files destination

I need to copy a set of files from source to destination on daily basis. So i need to skip the files already available on the destination directory.

If i use -y command while copying, it will ask confirmation to skip. But, i don't want to ask confirmation, it should skip always.
by vishnuj
18 Dec 2013 04:20
Forum: DOS Batch Forum
Topic: How to read lines in a text file with spaces?
Replies: 2
Views: 3003

Re: How to read lines in a text file with spaces?

Thank you very much.. This works.... :)
by vishnuj
18 Dec 2013 04:09
Forum: DOS Batch Forum
Topic: How to read lines in a text file with spaces?
Replies: 2
Views: 3003

How to read lines in a text file with spaces?

I have a file called file.txt in which it contains few lines as vishnu ram gopal suresh chandra sekar prem kumar nandhu I have written a batch script to read each line and to create a folder and assign the lines as name to that folder. FOR /f "tokens=* delims=" %a in (file.txt) DO @md %a b...