У меня есть простой скрипт на Python, который читает строки файла, и он работает как положено:
fn = "c:\\tempfile.txt"f = open(fn, 'r')
print "f", f
lines = f.readlines()
print lines
Однако, когда я вызываю этот сценарий с помощью вызова Windows CreateProcess () из C ++, он не работает.
print lines
команда приводит к:
[]
Файл, кажется, «открыт» в обоих случаях, основываясь на первом операторе печати. Есть идеи о том, что здесь происходит не так?
Ниже приведен код, который я использую для запуска процессов из C ++. Я взял его из Stackoverflow или MSDN
#ifndef WINPROC_H_
#define WINPROC_H_
#include <stdio.h>
#include <string>
#include <vector>
#include <windows.h>
void WinProc(std::string argv) {
std::vector<char> str(argv.begin(), argv.end());
str.push_back('\0');
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
// Start the child process.
if( !CreateProcess( NULL, // No module name (use command line)
&str[0], // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
FALSE, // Set handle inheritance to FALSE
0, // No creation flags
NULL, // Use parent's environment block
NULL, // Use parent's starting directory
&si, // Pointer to STARTUPINFO structure
&pi ) // Pointer to PROCESS_INFORMATION structure
) {
printf( "CreateProcess failed (%d).\n", GetLastError() );
return;
}
// Wait until child process exits.
WaitForSingleObject( pi.hProcess, INFINITE );
// Close process and thread handles.
CloseHandle( pi.hProcess );
CloseHandle( pi.hThread );
}
#endif // WINPROC_H_
Задача ещё не решена.