开发者

Is there any cross-platform command-line library for C++?

开发者 https://www.devze.com 2023-02-06 17:00 出处:网络
To run a command line using C++, I always use system command. However, I think this way is too error-prone since I only can parse a char* as argument without any other information. So I\'m looking for

To run a command line using C++, I always use system command. However, I think this way is too error-prone since I only can parse a char* as argument without any other information. So I'm looking for a cross-platform library that开发者_Python百科 works well with command-line? Has anyone known one?

Thanks,

Chan


Have a look at Boost.Process. It is still work in progress and is not part of the official Boost yet, but looks promising.


QProcess from Qt does this in a cross-platform manner.

http://doc.qt.nokia.com/4.6/qprocess.html

From the documentation above, the example usage is:

// some parent object
QObject * parent;

QString program = "./path/to/Qt/examples/widgets/analogclock";
QStringList arguments;
arguments << "-style" << "motif";

QProcess *myProcess = new QProcess(parent);
myProcess->start(program, arguments);
0

精彩评论

暂无评论...
验证码 换一张
取 消