Computers & Internet Logo

Related Topics:

Posted on Nov 02, 2008
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

I have downloaded a folder to the usb drive and now i have added more files ( pictures ) to the folder. how do i now download the new files o the usb drive without adding the pictures that are already downloaded? HELP thanks

  • hdarcangelo Nov 02, 2008

    i have no idea what you said but i'll keep trying. i appreciate your time and effort. thanks so much.

×

1 Answer

Anonymous

Level 3:

An expert who has achieved level 3 by getting 1000 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Vice President:

An expert whose answer got voted for 100 times.

  • Master 550 Answers
  • Posted on Nov 02, 2008
Anonymous
Master
Level 3:

An expert who has achieved level 3 by getting 1000 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Vice President:

An expert whose answer got voted for 100 times.

Joined: Apr 29, 2008
Answers
550
Questions
0
Helped
263873
Points
1417

Open a command window at the source folder
try a DOS command like this,
long line may wrap
replace the [usb*] with the spec for your system,, filespec can be anything, *.jpg *.raw that your camera requires

for %f in (*.*) do if not exist [usbdrive]:\[usbfolder]\%f copy %f [usbdrive]:\[usbfolder]

or you can make a batch file to do the same thing as this is likely to be a repeated task

@echo off
cls
echo Copying New Files
for %%f in (*.*) do if not exist [usbdrive]:\[usbfolder]\%%f copy %%f [usbdrive]:\[usbfolder]
echo New files Copied

  • Anonymous Nov 02, 2008

    better batch file takes source & destination as arguments for multiple uses



    @echo off
    cls
    If not exist %1 goto error

    if not exist %2 goto error

    echo Copying New Files from %1 to %2
    cd %1

    for %%f in (*.*) do if not exist %1\%%f copy %%f %2

    echo New files Copied
    goto done

    :error

    echo Copy batch file requires two parameters

    echo %0 [source] [destination]

    :done





    I had nothing else to do

  • Anonymous Nov 02, 2008

    Thought everyone has played with command prompts at some stage

    the command prompt is available from the right click menu in windows at most folders

    its a black boring window like the screen on a 1980s pc

    and you can use it as one

    if your USB pictures are in G:\PICTURES



    for %f in (*.*) do if not exist g:\pictures\%f copy %f g:\pictures



    will look at each file in the folder you start in one at a time, compare it with the folder you are aiming for, and only copy the file if it does not already exist.

×

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

60 views

Ask a Question

Usually answered in minutes!

Top Computers & Internet Experts

ADMIN Andrew
ADMIN Andrew

Level 3 Expert

73781 Answers

ADMIN Eric
ADMIN Eric

Level 3 Expert

42221 Answers

Brad Brown

Level 3 Expert

19190 Answers

Are you a Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...