I think the title is self-explanitary. So I don't think I need to go into any more detail. Hope some1 can help, thanks in advance![]()
This is a discussion on How do you output the contents of a console screen to file? within the C++ Programming forums, part of the General Programming Boards category; I think the title is self-explanitary. So I don't think I need to go into any more detail. Hope some1 ...
I think the title is self-explanitary. So I don't think I need to go into any more detail. Hope some1 can help, thanks in advance![]()
You can redirect the console output of any program using >
For example:
dir > somefile.txt
will output the directory to a file called somefile.txt
can this help you?