How do you execute...

Started by
2 comments, last by Draxis 22 years, 2 months ago
How can you execute one program from another? I mean, like there''re functions to rename files and move files, but how do you run them?
Advertisement
hi,

windows:
int system( const char *command );

call system("rename old.xxx new.xxx");
Thankya!
Under Windows, you can use ShellExecute and ShellExecuteEx.

This topic is closed to new replies.

Advertisement