Search found 7 matches

by ESerres
19 Feb 2013 14:54
Forum: DOS Batch Forum
Topic: Merge and rename duplicate files to incr by 1 ex: fn (1).ext
Replies: 13
Views: 16080

Re: Merge and rename duplicate files to incr by 1 ex: fn (1)

Aacini, When I tried your code above, I got the following results, not exactly what I was looking for: File "bcd" moved and renamed to "M:bcd (1)" File "boot.sdi" moved and renamed to "M:boot (1).sdi" File "bootfix.bin" moved and renamed to "M:b...
by ESerres
09 Feb 2013 13:19
Forum: DOS Batch Forum
Topic: Merge and rename duplicate files to incr by 1 ex: fn (1).ext
Replies: 13
Views: 16080

[Solved]Merge dirs & rename duplicate files to filename (1).

I re-read previous posts and completed a more detailed walk-through of Aacini's code this morning and realized that all my remaining questions from my original post had been addressed in his REM remarks. I had skimmed originally and didn't catch them. Thanks all for the help. Foxidrive, If I had tak...
by ESerres
08 Feb 2013 08:36
Forum: DOS Batch Forum
Topic: Merge and rename duplicate files to incr by 1 ex: fn (1).ext
Replies: 13
Views: 16080

Re: Merge and rename duplicate files to incr by 1 ex: fn (1)

Thanks Aacini, I was wondering if there was a shorter way of coding what I was doing, and it looks like you came up with a way. I had used recursive code as well, but checked twice - once for the destination directory, and again for the deleted directory. Checking in the "deleted" director...
by ESerres
07 Feb 2013 14:22
Forum: DOS Batch Forum
Topic: Merge and rename duplicate files to incr by 1 ex: fn (1).ext
Replies: 13
Views: 16080

Re: Merge and rename duplicate files to incr by 1 ex: fn (1)

I have tested and fixed the code from abc0502 and it works great. The code you posted wasn't doing recurrive checks on existing files but it helped me figure out a lot of things I didn't know. One very important thing I learned that some REM and :: lines will still execute if special characters are ...
by ESerres
03 Feb 2013 07:59
Forum: DOS Batch Forum
Topic: Merge and rename duplicate files to incr by 1 ex: fn (1).ext
Replies: 13
Views: 16080

Re: Merge and rename duplicate files to incr by 1 ex: fn (1)

abc0502, Thanks you for your help on this. The reason I am doing a byte comparison is that some of these files could be corrupt files. I can not seem to keep my house cool enough to keep my computers happy -- I lose a hard drive in one of my computers about every six months, so sometimes a drive cou...
by ESerres
02 Feb 2013 07:34
Forum: DOS Batch Forum
Topic: Merge and rename duplicate files to incr by 1 ex: fn (1).ext
Replies: 13
Views: 16080

Re: Merge and rename duplicate files to incr by 1 ex: fn (1)

No, I really want a batch file. I have at least seven 1.5 TB drives sitting in my floor with thousands of files on each one; movies, scanned pictures, documents, etc, but don't want to trash yet. There are too many files for me to do this manually. I had started doing it manually, but when I hit a d...
by ESerres
01 Feb 2013 17:18
Forum: DOS Batch Forum
Topic: Merge and rename duplicate files to incr by 1 ex: fn (1).ext
Replies: 13
Views: 16080

Merge and rename duplicate files to incr by 1 ex: fn (1).ext

Hello, I'm a stay-at-home-homeschooling-mom and need help creating the following batch file for my home computers. Although I used to make a living writing programs years and years ago, this is my first time to write DOS batch files (and the first time to ever post on a forum), so I am not familiar ...