Search found 8 matches

by xassnake
27 May 2011 15:18
Forum: DOS Batch Forum
Topic: help please with batch move files to folder
Replies: 5
Views: 5189

Re: help please with batch move files to folder

thx for your fast answer i'll try this tomorrow morning i let you know if it works ok

Yes it works great thank you very much
by xassnake
27 May 2011 13:17
Forum: DOS Batch Forum
Topic: help please with batch move files to folder
Replies: 5
Views: 5189

help please with batch move files to folder

hi i have a problem i want to move winrar part files files to the same filename(folder) (witout part1 part2 etc) i have a code but if this code is not working right see image http://img24.imageshack.us/img24/9279/fileix.jpg @echo off & setLocal EnableDELAYedeXpansion for /f "tokens=* delims...
by xassnake
09 May 2011 22:11
Forum: DOS Batch Forum
Topic: make dir and move part1 2 3 4 etc to same directory
Replies: 2
Views: 3325

Re: make dir and move part1 2 3 4 etc to same directory

i use par2 in batch to create recoveryfiles
because par2 make recovery files of all files (i dont want that) i want to keep the archived files and delete the other ones

it's only possible to create par2 recovery files in directory's
by xassnake
06 May 2011 14:57
Forum: DOS Batch Forum
Topic: make dir and move part1 2 3 4 etc to same directory
Replies: 2
Views: 3325

make dir and move part1 2 3 4 etc to same directory

Hi i need some help this is the situation i have a directory tree like this root= c:\dir subdir = photomap (and more sub-sub dirs) i have photomap archived with winrar in the root i see photomap.part1 to photomap.part46 i move all rar files to another directory c:\dir2 i want to make a batchfile tha...
by xassnake
01 May 2011 09:04
Forum: DOS Batch Forum
Topic: Make directory's in subdir tree and copy files (for command)
Replies: 6
Views: 6321

Re: Make directory's in subdir tree and copy files (for comm

thank you it works almost good it makes the right directory and copied the jpg files in it but my jpg files are in the root and not in sub dir if i change the command for /f "delims=" %%b in ('dir /a-d /b /s "%root%\%%a\*.jpg"') in for /f "delims=" %%b in ('dir /a-d /b ...
by xassnake
01 May 2011 05:41
Forum: DOS Batch Forum
Topic: Make directory's in subdir tree and copy files (for command)
Replies: 6
Views: 6321

Re: Make directory's in subdir tree and copy files (for comm

only *.jpg files
copy .jpg files to (created map directory)
c:\dir1\map
c:\dir2\map
c:\dir3\map
etc..............
by xassnake
01 May 2011 05:03
Forum: DOS Batch Forum
Topic: Make directory's in subdir tree and copy files (for command)
Replies: 6
Views: 6321

Make directory's in subdir tree and copy files (for command)

My goal is to make a directory in a sub directory and copy files in the map dir example: c:\dir\1 c:\dir\2 etc.............. what i want c:\dir\1\map c:\dir\2\map c:\dir\3\map etc................. i know a few commands but that whont work copy files works whit this command FOR /R %%g IN (.) DO xcopy...