Ejemplo n.º 1
0
        bool is_network_path(const std::wstring& path)
        {
            wchar_t buff[MAX_PATH];
            return
#if defined(ONECORE)
                PathIsUNCEx(path.c_str(), nullptr)
#else
                PathIsUNC(path.c_str())
#endif
                || (GetVolumePathName(path.c_str(), buff, MAX_PATH) && GetDriveType(buff) == DRIVE_REMOTE);
        }
Ejemplo n.º 2
0
int TestPathIsUNCEx(int argc, char* argv[])
{
	BOOL status;
	LPTSTR Server;
	TCHAR Path[PATHCCH_MAX_CCH];

	/* Path is UNC */

	_tcscpy(Path, testPathUNC);

	status = PathIsUNCEx(Path, (LPCTSTR*) &Server);

	if (!status)
	{
		_tprintf(_T("PathIsUNCEx status: 0x%08")_T(PRIX32)_T("\n"), status);
		return -1;
	}

	if (_tcscmp(Server, testServer) != 0)
	{
		_tprintf(_T("Server Name Mismatch: Actual: %s, Expected: %s\n"), Server, testServer);
		return -1;
	}

	/* Path is not UNC */

	_tcscpy(Path, testPathNotUNC);

	status = PathIsUNCEx(Path, (LPCTSTR*) &Server);

	if (status)
	{
		_tprintf(_T("PathIsUNCEx status: 0x%08")_T(PRIX32)_T("\n"), status);
		return -1;
	}

	return 0;
}