Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Native methods in C++?

Options
  • 25-04-2002 1:00pm
    #1
    Closed Accounts Posts: 43


    Is it possible to use native methods in C++? What I mean is, can you get C++ to execute an MS-DOS command and use the results?


Comments

  • Registered Users Posts: 2,648 ✭✭✭smiles


    what kind of msdos commands?

    you should be able to recreate the command fairly easily in C (look up any manual) and then output the results to a text file, and then intrepret them from there.

    << Fio >>


  • Registered Users Posts: 3,308 ✭✭✭quozl


    its been years but either system() or spawn should do it. Most MSDOS programs return an integer value known as the errorlevel. This will tell you how to program exited, ie successfully, or in flames.
    If you need the msdos programs out put try
    system("myProgram > a.txt");

    which will redirect the output away from STDOUT and into a.txt, which you can read like a normal text file.


Advertisement