1.
開啟資料夾:
system.diagnostics.process.start(filepath);
開啟資料夾中某個檔案:
system.diagnostics.process.start(filepath+"/"+filename);
開啟資料夾並選中單個檔案:
system.diagnostics.process.start("explorer", "/select,"+ filepath+"\\"+filename);
或
system.diagnostics.process.start("explorer.exe", "/select,"+ filepath+"\\"+filename);
用ie開啟檔案:
system.diagnostics.process.start("explorer",filepath+"\\"+filename);
或
system.diagnostics.process.start("explorer.exe",filepath+"\\"+filename);
注:(explorer,explorer.exe,select,不區分大小寫,」/selecet,」其中」/,」都不能少,filepath為檔案路徑不包含檔名)
2.c# 實現:
private void openfolderandselectfile(string filefullname)
參考:windows 資源管理器引數的用法。
explorer /n
此命令使用預設設定開啟乙個資源管理器視窗。顯示的內容通常是安裝 windows 的驅動器的根目錄。
explorer /e
此命令使用預設檢視啟動 windows 資源管理器。
explorer /e,c:\windows
此命令使用預設檢視啟動 windows 資源管理器,並把焦點定位在 c:\windows。
explorer /root, c:\windows\cursors
此命令啟動 windows 資源管理器後焦點定位在 c:\windows\cursors folder。此示例使用 c:\windows\cursors 作為 windows 資源管理器的「根」目錄。
備註:請注意命令中「/root」引數後面的逗號。
explorer /select, c:\windows\cursors\banana.ani
此命令啟動 windows 資源管理器後選定「c:\windows\cursors\banana.ani」檔案。
備註:請注意命令中「/select」引數後面的逗號。
windows 資源管理器引數可以在乙個命令中進行組合。以下示例顯示了 windows 資源管理器命令列引數的組合。
explorer /root, \\server\share, select, program.exe
此命令啟動 windows 資源管理器時以遠端共享作為「根」資料夾,而且 program.exe 檔案將被選中。
回到頂端
更改 windows 資源管理器預設啟動資料夾
若要更改 windows 資源管理器的預設啟動資料夾,請:
單擊開始,指向所有程式,指向附件,然後右鍵單擊windows explorer。
在出現的選單上,單擊屬性。
在「目標」框中,將「/root」命令列引數附加到「%systemroot%\explorer.exe」命令之後,並使用您希望的啟動位置。例如,如果您希望 windows 資源管理器啟動後定位在 c 驅動器的根,則請將該命令編輯為:
%systemroot%\explorer.exe /root, c:\
C 開啟指定目錄並定位到檔案
c 實現 private void openfolderandselectfile string filefullname 參考 windows 資源管理器引數的用法。explorer n 此命令使用預設設定開啟乙個資源管理器視窗。顯示的內容通常是安裝 windows 的驅動器的根目錄。explor...
C 開啟指定目錄並定位到檔案
1.開啟資料夾 system.diagnostics.process.start filepath 開啟資料夾中某個檔案 system.diagnostics.process.start filepath filename 開啟資料夾並選中單個檔案 system.diagnostics.proces...
C 開啟指定目錄並定位到檔案
c 實現 private void openfolderandselectfile string filefullname 參考 windows 資源管理器引數的用法。explorer n 此命令使用預設設定開啟乙個資源管理器視窗。顯示的內容通常是安裝 windows 的驅動器的根目錄。explor...