× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



On Mon, 2008-11-17 at 15:02 +0100, Olsson Erik wrote:
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

Erik,

You might want to us sprintf() for pasting together the parts of your
command. Something like ...

#include <stdio.h>

int
main( int argc, char * argv[] )
{
char pmbr[] = "THING";
char cmdstring[256];
int written;
written =
sprintf( cmdstring
, "CPYF FROMFILE(MYLIB/MYFILE) TOFILE(FTPLIB/FILEX) "
"FROMMBR(%s) TOMBR(%s) MBROPT(*REPLACE) "
"FMTOPT(*NOCHK)"
, pmbr, pmbr );
printf( "command string, of length %i, is ...\n %s\n"
, written, cmdstring );
return 0;
} /* main() */

Cheers,
Terry.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.