C 獲取執行程式所在路徑和啟動資源管理器

2021-09-07 06:30:32 字數 3083 閱讀 5722

一、 獲取執行程式所在路徑

1.獲取和設定當前目錄的完全限定路徑。

string str = system.environment.currentdirectory;  //獲取的是主程式目錄,執行緒啟動的子程式內獲取的路徑也是主程式的工作目錄

result: c:\***\***

2.獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。

result: c:\***\***

3.獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名。

string str = system.diagnostics.process.getcurrentprocess().mainmodule.filename;

result: c:\***\***\***.exe

4.獲取當前 thread 的當前應用程式域的基目錄,它由程式集衝突解決程式用來探測程式集。

result: c:\***\***\

5.獲取應用程式的當前工作目錄。

string str = system.io.directory.getcurrentdirectory();

result: c:\***\***

6.獲取和設定包含該應用程式的目錄的名稱。

result: c:\***\***\

7.獲取當前程序的完整路徑,包含檔名。

string str = this.gettype().assembly.location;

result: c:\***\***\***.exe

result: c:\***\***\***.exe

此外,更多見的通過xml檔案配置具體的路徑來達到合理的規劃配置檔案的具體存放位置,如web中的配置檔案中的路徑。

二、啟動資源管理器:

system.diagnostics.process.start("explorer.exe", globalinfos.classroomrecordpath);

1

.直接啟動

processstartinfo info = new

processstartinfo();

info.filename = path.combine(environment.getenvironmentvariable("

windir

"), "

explorer.exe");

process.start(info).waitforexit(); 2

.類似1

processstartinfo info = new

processstartinfo();

info.createnowindow = true

;info.useshellexecute = true

;info.windowstyle =processwindowstyle.hidden;

info.filename = path.combine(environment.getenvironmentvariable("

windir

"), "

explorer.exe");

process.start(info); 3

.shell 外部方法

private

void button1_click(object

sender, eventargs e)

public

enum showcommands : int

[dllimport(

"shell32.dll")]

static

extern

intptr shellexecute(

intptr hwnd,

string

lpoperation,

string

lpfile,

string

lpparameters,

string

lpdirectory,

showcommands nshowcmd); 4

.shell視窗常規

process.start(path.combine(environment.getenvironmentvariable(

"windir

"), "

explorer.exe

"));

shellwindows win= new

shdocvw.shellwindows(); 5

.cmd命令執行explorer.exe

system.diagnostics.process process = new

system.diagnostics.process();

system.diagnostics.processstartinfo startinfo = new

system.diagnostics.processstartinfo();

startinfo.windowstyle =system.diagnostics.processwindowstyle.hidden;

startinfo.filename = "

cmd.exe";

process.startinfo =startinfo;

process.startinfo.redirectstandardinput = true

; process.startinfo.redirectstandardoutput = true

; process.startinfo.useshellexecute = false

; process.start();

process.standardinput.writeline(environment.getenvironmentvariable(

"windir

")+"

\\explorer.exe");

process.standardinput.flush();

process.standardinput.close();

process.waitforexit();

view code

C 獲取本執行程式所在的當前路徑

1.獲取和設定當前目錄的完全限定路徑。string str system.environment.currentdirectory result c 2.獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。result c 3.獲取新的 process 元件並將其與當前活動的程序關聯的主模...

C 獲取當前可執行程式( exe)所在的路徑

我們在寫程式時經常有這樣一種應用的需求 在exe可執行檔案所在的目錄下進行一些與該程式相關的檔案儲存操作。當程式執行時就修要知道可執行程式安裝在當前使用者系統中的那個目錄下。主要就是利用getmodulefilename 這個函式去實現的。具體用法如下 cpp view plain copy tch...

C 獲取當前可執行程式( exe)所在的路徑

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!我們在寫程式時經常有這樣一種應用的需求 在exe可執行檔案所在的目錄下進行一些與該程式相關的檔案儲存操作。當程式執行時就修要知道可執行程式安裝在當前使用者系統中的那個目錄下。主要就是利用getmodulefilename 這個函式去實現的。具體用法...