ShellExecute函數是一個用于執行外部程序或打開文件的函數,其使用方式如下:
#include <Windows.h>
HINSTANCE ShellExecute(
HWND hwnd, // 窗口句柄
LPCTSTR lpOperation, // 操作類型,如 "open"、"edit"、"print" 等,可以為NULL
LPCTSTR lpFile, // 文件路徑或可執行程序路徑
LPCTSTR lpParameters, // 命令行參數,可以為NULL
LPCTSTR lpDirectory, // 工作目錄,可以為NULL
INT nShowCmd // 窗口顯示方式,如SW_SHOW、SW_HIDE等
);
參數說明:
hwnd:窗口句柄,可以為NULL。
lpOperation:操作類型,如 “open”、“edit”、“print” 等,如果不指定操作類型,可以為NULL。
lpFile:文件路徑或可執行程序路徑。
lpParameters:命令行參數,可以為NULL。
lpDirectory:工作目錄,可以為NULL。
nShowCmd:窗口顯示方式,如SW_SHOW、SW_HIDE等。
#include <Windows.h>
int main() {
ShellExecute(NULL, "open", "C:\\path\\to\\file.txt", NULL, NULL, SW_SHOW);
return 0;
}
以上示例代碼將打開C:\path\to\file.txt文件。
注意:在使用ShellExecute函數時,需要確保所調用的外部程序或文件的路徑是正確的,否則可能會執行失敗。