I normally use something like:
sprintf (cmd, "RMVM %s/%s %s ", Lib, Obj, Member);
if (system (cmd) != 0) {
        // some error handling
}
In this case Lib, Obj and member are null terminated char arrays.
        char            Lib[11];
        char            Obj[11];
        char            Member[11];
        char            cmd[200];
/Joakim
-----Original Message-----
From: c400-l-bounces+joakim.lindbom=capgemini.com@xxxxxxxxxxxx [mailto:c400-l-bounces+joakim.lindbom=capgemini.com@xxxxxxxxxxxx] On Behalf Of Olsson Erik
Sent: den 17 november 2008 15:02
To: C programming iSeries / AS400
Subject: [C400-L] Neater way of preparing call to system()
I need to issue a CPYF using system() that would look something like this
from RPG:
cmdstring = 'CPYF FROMFILE(MYLIB/MYFILE) TOFILE+
            (FTPLIB/FILEX) FROMMBR(' + %trimr(pmbr) +') +
            TOMBR(' + %trimr(pmbr) + ') MBROPT(*REPLACE) FMTOPT(*NOCHK)';
That is, the command is hard coded except for the member names, which can be
anywhere between 2 and 10 bytes.
Does anyone have any good suggestions for a C/C++ equivalent? The best I can
come up with at present includes a lot of inserts and appends and would take
several lines.
Thanks,
Erik
--
This is the C programming iSeries / AS400 (C400-L) mailing list
To post a message email: C400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: 
http://lists.midrange.com/mailman/listinfo/c400-l
or email: C400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at 
http://archive.midrange.com/c400-l.
Capgemini is a trading name used by the Capgemini Group of companies which includes Capgemini Sverige AB, a company registered in Sweden (number 556092-3053) whose registered office is at Gustavslundsv?gen 131  Box 825 - S-161 24 Bromma.
This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is 
intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to 
read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message 
in error, please notify the sender immediately and delete all copies of this message.
As an Amazon Associate we earn from qualifying purchases.