0

リンクで利用可能なコードの使用: http://msdn.microsoft.com/en-us/library/aa969393.aspx

HRESULT CreateLink(LPCWSTR lpszPathObj1, LPCSTR lpszPathLink, LPCWSTR lpszDesc) 
{ 
    HRESULT hres; 
    IShellLink* psl; 

    // Get a pointer to the IShellLink interface. It is assumed that CoInitialize
    // has already been called.
    hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (LPVOID*)&psl); 
    if (SUCCEEDED(hres)) 
    { 
        IPersistFile* ppf; 

        // Set the path to the shortcut target and add the description. 
        psl->SetPath(lpszPathObj1); 
        psl->SetDescription(lpszDesc); 

        // Query IShellLink for the IPersistFile interface, used for saving the 
        // shortcut in persistent storage. 
        hres = psl->QueryInterface(IID_IPersistFile, (LPVOID*)&ppf); 

        if (SUCCEEDED(hres)) 
        { 
            WCHAR wsz[MAX_PATH]; 

            // Ensure that the string is Unicode. 
            MultiByteToWideChar(CP_ACP, 0, lpszPathLink, -1, wsz, MAX_PATH); 

            // Add code here to check return value from MultiByteWideChar 
            // for success.

            // Save the link by calling IPersistFile::Save. 
            hres = ppf->Save(wsz, TRUE); 
            ppf->Release(); 
        } 
        psl->Release(); 
    } 
    return hres; 
}

コマンドライン引数を取るターゲット (exe) を使用して、デスクトップにショートカットを作成しようとしています。次の方法でターゲットを設定しようとしました。

LPCWSTR lpszPathObj1 = L"C:/Folder1/Folder2/SomeApp.exe 690080776072629&734078";

Target でショートカットを作成します:

"C:/Folder1/Folder2/SomeApp.exe 690080666072629&782078"

LPCWSTR lpszPathObj1 = L"C:/Folder1/Folder2/SomeApp.exe\" 690080776072629&734078";

ターゲットが空白のショートカットを作成します。

より多くのオプションを試しましたが、機能しません。誰か助けてくれませんか?

4

1 に答える 1

2

あなたが言及した文字列が psl->setPath() に渡されたと仮定しています。リンクによって呼び出される実行可能ファイルを渡すだけです。引数を同じ文字列に入れるべきではありません。代わりに、その後、引数だけを指定して psl->setArguments() を呼び出します。文字列内の二重引用符は違いはありません。それらは、引数の 1 つにスペースが含まれている場合にのみ必要です。

于 2012-05-02T16:06:17.273 に答える