PathFileExists在通过RemoteApp执行应用程序时返回false

时间:2016-02-23 12:50:09

标签: c++ path unc remoteapp

我在 C ++ / WinAPI 中构建的可执行文件将检查放置在同一文件夹中的文件,并为此使用PathFileExists。当我在普通计算机上运行它时,它会找到该文件,但是当我在 RemoteApp 上发布可执行文件并从 Web Access 运行它时,找不到该文件。我会失踪什么?

// This is the file I want to find (located in the same directory as the EXE)
wstring myfile = L"myfile.conf";
BOOL abspath = FALSE;

// Trying to get the absolute path first
DWORD nBufferLength = MAX_PATH;
wchar_t szCurrentDirectory[MAX_PATH + 1];
if (GetCurrentDirectory(nBufferLength, szCurrentDirectory) == 0) {
    szCurrentDirectory[MAX_PATH + 1] = '\0';
} else {
    abspath = true;
}

if (abspath) {
    // Create the absolute path to the file
    myfile = L'\\' + myfile;
    myfile = szCurrentDirectory + myfile ;
    MessageBox(hWnd, ConvertToUNC(myfile).c_str(), L"Absolute Path", MB_ICONINFORMATION);
} else {
    // Get the UNC path
    myfile = ConvertToUNC(myfile);
    MessageBox(hWnd, myfile.c_str(), L"UNC Path", MB_ICONINFORMATION);
}

//  Try to find file
int retval = PathFileExists(myfile.c_str());

if (retval == 1) {
    // Do something
} else {
    // File not found
}

here复制ConvertToUNC功能。 我看到的是,虽然可执行文件位于其他地方,但绝对路径被认为是C:\Windows。我真的不知道造成这种情况的原因。服务器是Windows 2012 R2,就像我说的那样,应用程序通过RemoteApp Web Access运行。返回的UNC路径只是文件的名称(没有卷或文件夹)

0 个答案:

没有答案