ShellExecute -przekazanie parametru
Ostatnio zmodyfikowano 2009-02-08 16:12
GoldWolf Temat założony przez niniejszego użytkownika |
ShellExecute -przekazanie parametru » 2009-02-08 15:52:20 Witam mam taki problem: string test; test = "\"http://livescore.com\" >mama.txt"; system( "curl http://livescore.com/default.dll?page=germany >n.txt" );
ShellExecute( Handle, "open", "curl.exe", test.c_str(), NULL, SW_SHOW ); Chciałbym by ShellExecute robił to co robi system. Program się odpali i parametr zostanie przekazany ale nie stworzy się plik mama, prawdopodobnie źle jest przekazany. A może znacie jakieś inne sposoby na odpalenie "curl "http://livescore.com/default.dll?page=germany" >n.txt", adres musi być w cudzysłowie ? |
|
DejaVu |
» 2009-02-08 16:05:53 A próbowałeś coś takiego? ShellExecute( NULL, "open", "curl http://livescore.com/default.dll?page=germany >n.txt", "", NULL, SW_SHOW ); |
|
GoldWolf Temat założony przez niniejszego użytkownika |
» 2009-02-08 16:12:33 Dokładnie tak: string test; test = "curl.exe http://livescore.com >mama.txt";
ShellExecute( Handle, "open", test.c_str(), NULL, NULL, SW_SHOW ); Nie odpala ..... ALe ;-) test = "curl.exe \"http://livescore.com\" >mama.txt";
system( test.c_str() ); ten sposób tak ;-) |
|
« 1 » |