Executable files

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 02/05/2003 at 01:20, xxxxxxxx wrote:

User Information:
Cinema 4D Version:   8.000 
Platform:   Windows  ;   
Language(s) :   C.O.F.F.E.E  ;

---------I've got another problem, maybe u can help me ...
var filename = GetGetRootFilename();
filename->RemoveLast();
filename->Add("my.exe");
GeExecuteFile( filename );
That works, but now I want to execute the my.exe with parameters
(like "my.exe /helloworld")
But by appending a " /helloworld" to the path, nothing happens. How can
I execute the file with a parameter ?
 
THX TamarilloDAN

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 02/05/2003 at 08:43, xxxxxxxx wrote:

Try GeExecuteProgram(). If that doesn't work, then I think it's impossible.

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 02/05/2003 at 08:51, xxxxxxxx wrote:

thanks, that's it.