c ++如何运行其内容存储在char数组中的.exe文件?

时间:2012-01-04 06:42:44

标签: c++ char exe execute

我正在制作一个特定的节目,我只是想知道我是否可以这样做:  运行一个文件,其内容存储在ON WINDOWS的char数组中。

这是读取可执行文件并将其存储在char数组中的代码:

filetoopen.open (C:\blahlbah.exe, ios::binary);
filetoopen.seekg (0, ios::end);
length = filetoopen.tellg();
filetoopen.seekg (0, ios::beg);
buffer = new char [length];
filetoopen.read (buffer, length);
filetoopen.close();

我听说过一些关于RunPE的内容,我做了一些搜索,但是我没有成功找到任何要使用的C ++代码。

1 个答案:

答案 0 :(得分:2)