我正在爲JavaScript中的D-bus應用程序。我需要從javascript代碼調用的可執行文件,我知道這是可能做到這一點在Windows這樣 var activeXObj = new ActiveXObject("Shell.Application");
activeXObj.ShellExecute("C:\\WINDOWS\\NOTEPAD.EXE", "", "", "open",
我使用此代碼(從MSDN)打開默認瀏覽器。 Private Declare Function ShellExecute _
Lib "shell32.dll" _
Alias "ShellExecuteA"(_
ByVal hwnd As Long, _
ByVal lpOperation As String,
我想讓我的其他C++程序從另一個文件運行,所以我使用的是shell執行。穆代碼: #pragma comment(lib,"shell32.lib")
#include "windows.h"
#include<Shellapi.h>
#include<stdio.h>
#include<iostream>
using namespace std;
class spwan{
pu