Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Arvind
Lv 4
Arvind asked in Computers & InternetSoftware · 1 decade ago

Creating an exe file?

I want to make an exe file thereby to copy a photo of name pic1.jpg to be copied and pasted in drives C: , D: , E:

Update:

I want to make an exe file thereby to copy a photo of name pic1.jpg to be copied and pasted in drives C: , D: , E:

I want the programing code to write in C or C++ or Visual Basic

5 Answers

Relevance
  • snvffy
    Lv 7
    1 decade ago
    Favorite Answer

    What you describe can best be done with a simple little DOS batch file.

    copy con MYPROGRAM.bat

    copy a:\pic1.jpg c: /v

    copy a:\pic1.jpg d: /v

    copy a:\pic1.jpg e: /v

    exit

    F6

    Then key in MYPROGRAM at the command prompt

  • 1 decade ago

    To do that, you need to program a software using VB or Java. Or else you can use the Command Prompt to achieve it

    Click on Start - Run

    Type cmd

    Then using the copy command, you can copy them.

    Type Copy ? to get more information about copying

    BYE

    Imtiyaz G

  • Anonymous
    1 decade ago

    Write a batch file! It doesn't require you to purchase any programming software and it's quite simple. Go to your local library and look for books like "Programming Using Batch Files". They are not going to be powerful programs, but they will work perfect for the example you give, plus it's free!

  • Tim
    Lv 6
    1 decade ago

    For small simple Executables for basic tasks like this, Visual Basic 6 is still the easiest fastest way to go. (Not .NET, managed code would be unnecessary.)

  • How do you think about the answers? You can sign in to vote the answer.
  • 1 decade ago

    You have to learn a programming language.. Try C.

Still have questions? Get your answers by asking now.