Is there any sw that i am looking for?

Status
Not open for further replies.

sms_solver

In the zone
Does anyone knows about any software that copies only folder structure from source (let say CD) to destination folder (i.e in Hard disk). I don't want files to be copied.

:? :!:
If there is not such kind of software, can anybody give hints or codes to do so in Visual Basic or C++.

Thanks,
 

adeegee

Broken In
You can do that very easily using a dos command called"XCOPY".
The syntax is

XCOPY source [destination] /T [/E]

You should go to your destination point, and open a dos window there, or open a dos window and go to your destination point, whichever is easier.
and enter the above command, where source is the folder you want to copy. In this case you can leave the destination out. but put /T after a space.

XCOPY H:\MyFolder\ /T

That will copy the directory structure but leave out empty sub-dirs at the source. However if you also add the /E as shown, it will include even the empty sub-dirs.

Hope that helped.
 
OP
sms_solver

sms_solver

In the zone
thanks

thanks for solution

it will really going to help me a lot

but is there any window app that can do the same!
 

alib_i

Cyborg Agent
"WhereIsIt?" is the exact thing you need.
Its a software to keep track of your CD collection.

Its really good software, with features to search the entire collection.
Found it on DIGIT CD once.

its shareware btw
 

ineo

Broken In
You could write your own app that just calls this one in the background. Maybe using the Shell command in VB :)
 
Status
Not open for further replies.
Top Bottom