Microsoft
Software
Hardware
Network
Question : Robocopy - How do i copy images from one directory structure to a single folder?
Using robocopy (or something similar on windows)
I would like to know how I can copy all JPG or GIF files from c:/DigitalCamera and it subdirectories all place them all into the one folder c:/DigitalCameraNew
I do not want the folder structure, just the images. The plan is to have a copy of the images all in one folder.
thanks
Answer : Robocopy - How do i copy images from one directory structure to a single folder?
That's correct. If you don't want to overwrite existing files use BAT with the following content:
@echo off
set dest=c:\DigitalCameraNew\
for /r %%i in (*.jpg, *.gif) do if not exist "%dest%%%~nxi" copy "%%i" "%dest%"
set dest=
Random Solutions
ClearOS Enterprise 5.2 Alpha 1
importing the data into table having xml datatype using db2 import.
ORACLE SQL similarity with SQL Server
ADmodify.exe "mailbox rights modification disabled" ??
Repeater Enable/Disable RequiredFieldValidator depending a textbox
"outlook.ost cannot be accessed because it has been configured for usw with a different mailbox"
Java Open Source Barcode Software
How to reset the sametime password for a single user
Java SAX
How do I change the default Domain extension for SBS 2008 in Exchange for all users?