1

我制作了这个 dll 文件来尝试检查文件是否存在。但即使我手动创建文件,我的 dll 仍然找不到它。

我的 dll 检索正在运行的程序的进程 id 并查找以 pid 命名的文件。

谁能告诉我我错过了什么:(

代码:

#include <Windows.h>
#include <winbase.h>
#include <stdio.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>

using namespace std;

int clientpid = GetCurrentProcessId();
ifstream clientfile;
string clientpids, clientfilepath;

VOID LoadDLL() {
    AllocConsole();
    freopen("CONOUT$", "w", stdout);
    std::cout << "Debug Start" << std::endl;

    std::ostringstream ostr;
    ostr << clientpid;
    clientpids = ostr.str();
    ostr.str("");

    TCHAR tempcvar[MAX_PATH];
    GetSystemDirectory(tempcvar, MAX_PATH);
    ostr << tempcvar << "\\" << clientpids << ".nfo" << std::endl;
    clientfilepath = ostr.str();
    //clientfile.c_str()
    ostr.str("");

    std::cout << "Start search for: " << clientfilepath << std::endl;

    FOREVER {
        clientfile.open(clientfilepath,ios::in);
        if(clientfile.good()) {
            std::cout << "Exists!" << std::endl;
        }

        Sleep(10);
    };
}
4

1 回答 1

0

假设您正在使用 UNICODE,

我认为问题出在以下行:
ostr << tempcvar << "\\" << clientpids << ".nfo" << std::endl;
tempcvar 是一个 tchar,也许您正在使用 unicode,所以这意味着 tempcvar 是一个宽字符。

您插入的结果tempcvar不是ostr您所期望的(您也将多字节与 Widechar 混合)。解决此问题的方法是转换tempcvar为多字节字符串(const char*char*...)

根据您的代码查看此示例(查看 tchar 到多字节字符之间的转换)

VOID LoadDLL() {

AllocConsole();
freopen("CONOUT$", "w", stdout);
std::cout << "Debug Start" << std::endl;
std::ostringstream ostr;
ostr << clientpid;
clientpids = ostr.str();
ostr.str("");

TCHAR tempcvar[MAX_PATH];
GetSystemDirectory(tempcvar, MAX_PATH);

// Convertion between tchar in unicode (wide char) and multibyte
wchar_t * tempcvar_widechar = (wchar_t*)tempcvar;
char* to_convert;
int bytes_to_store = WideCharToMultiByte(CP_ACP,
    0,
    tempcvar_widechar,
    -1,NULL,0,NULL,NULL);
to_convert = new char[bytes_to_store];

WideCharToMultiByte(CP_ACP,
    0,
    tempcvar_widechar,
    -1,to_convert,bytes_to_store,NULL,NULL);

// Using char* to_convert that is the tempcvar converted to multibyte
ostr << to_convert << "\\" << clientpids << ".nfo" << std::endl;
clientfilepath = ostr.str();
//clientfile.c_str()
ostr.str("");

std::cout << "Start search for: " << clientfilepath << std::endl;

FOREVER {
    clientfile.open(clientfilepath,ios::in);
    if(clientfile.good()) {
        std::cout << "Exists!" << std::endl;
    }

    Sleep(10);
};

}

如果此示例对您不起作用,您可以搜索有关宽字符串到多字节字符串转换的更多信息。
检查您是否正在使用 Unicode,如果是,也许这是您的问题。

如果您不使用 unicode,则代码中的问题可能是打开文件。

希望能帮助到你!

于 2013-04-13T01:54:14.997 回答