I have the txt file in e:/a b In system() function could not accept the space So what to do My c++ code is
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
system("start e:/a b/test.txt");
}
|
I have the txt file in e:/a b In system() function could not accept the space So what to do My c++ code is
|
||||
|
|
What you need is to emulate what you would do on the command line. For instance:
As an aside, generally one uses a .bat extension for batch files. Not sure how picky start is on the extension, but it helps for understandability. |
|||
|
|