Hello,
I am not sure that this is the correct forum to post, but I could not find a closer forum. Please if this is not the correct forum could you point me in the right direction?
I have a .bat file
that goes out to one of my network drives and looks for all the .jpg files in a specified folder. This folde4r might contain multiple folders within what I get at the end is a text file with the location for each .jpg file
for example
c:\drawings\one\drw1.jpg
c:\drawings\one\drw2.jpg
c:\drawings\two\fld1.jpg, etc.
up to this point everything works well.
I am trying to accomplish two more things. I was given a file with about 2500 drawings all in different places
I would like to bring all these drawings to a specific folder
Here is the code that I am using
any pointers are much appreciated thanks!!!
I am not sure that this is the correct forum to post, but I could not find a closer forum. Please if this is not the correct forum could you point me in the right direction?
I have a .bat file
that goes out to one of my network drives and looks for all the .jpg files in a specified folder. This folde4r might contain multiple folders within what I get at the end is a text file with the location for each .jpg file
for example
c:\drawings\one\drw1.jpg
c:\drawings\one\drw2.jpg
c:\drawings\two\fld1.jpg, etc.
up to this point everything works well.
I am trying to accomplish two more things. I was given a file with about 2500 drawings all in different places
I would like to bring all these drawings to a specific folder
Here is the code that I am using
Code:
cd d:\
cd d:\drawings
erase c:\drawings\drawings.txt
dir d:\drawings\*.dwg /s /b < c:\drawings\drawings.txt
any pointers are much appreciated thanks!!!