首頁 > 軟體

C#實現開啟指定目錄和指定檔案的範例程式碼

2022-06-29 22:00:31

一、實現內容

1.1實現的功能

想要實現:

①開啟指定的目錄;

②開啟指定的目錄且選中指定檔案;

③開啟指定檔案

1.2實現的效果

二、實現操作

        /// <summary>
        /// 開啟目錄
        /// </summary>
        /// <param name="folderPath">目錄路徑(比如:C:UsersAdministrator)</param>
        private static void OpenFolder(string folderPath)
        {
            if (string.IsNullOrEmpty(folderPath)) return;
 
            Process process = new Process();
            ProcessStartInfo psi = new ProcessStartInfo("Explorer.exe");
            psi.Arguments = folderPath;
            process.StartInfo = psi;
 
            try
            {
                process.Start();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                process?.Close();
 
            }
 
        }
 
        /// <summary>
        /// 開啟目錄且選中檔案
        /// </summary>
        /// <param name="filePathAndName">檔案的路徑和名稱(比如:C:UsersAdministratortest.txt)</param>
        private static void OpenFolderAndSelectedFile(string filePathAndName)
        {
            if (string.IsNullOrEmpty(filePathAndName)) return;
 
            Process process = new Process();
            ProcessStartInfo psi = new ProcessStartInfo("Explorer.exe");
            psi.Arguments = "/e,/select,"+filePathAndName;
            process.StartInfo = psi;
 
            //process.StartInfo.UseShellExecute = true;
            try
            {
                process.Start();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                process?.Close();
 
            }
        }
 
        /// <summary>
        /// 開啟檔案
        /// </summary>
        /// <param name="filePathAndName">檔案的路徑和名稱(比如:C:UsersAdministratortest.txt)</param>
        /// <param name="isWaitFileClose">是否等待檔案關閉(true:表示等待)</param>
        private static void OpenFile(string filePathAndName,bool isWaitFileClose=true)
        {
            Process process = new Process();
            ProcessStartInfo psi = new ProcessStartInfo(filePathAndName);
            process.StartInfo = psi;
 
            process.StartInfo.UseShellExecute = true;
 
            try
            {
                process.Start();
 
                //等待開啟的程式關閉
                if (isWaitFileClose)
                {
                    process.WaitForExit();
                }
                
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                process?.Close();
               
            }
        }

三、Windows 資源管理器引數說明

Windows資源管理器引數的說明

序號引數命令說明
1Explorer /n此命令使用預設設定開啟一個資源管理器視窗。顯示的內容通常是安裝 Windows 的驅動器的根目錄
2Explorer /e此命令使用預設檢視啟動 Windows 資源管理器
3Explorer /e,C:Windows此命令使用預設檢視啟動 Windows 資源管理器,並把焦點定位在 C:Windows路徑上
4Explorer /root, C:WindowsCursors此命令啟動 Windows 資源管理器後焦點定位在 C:WindowsCursors folder路徑上。此範例使用 C:WindowsCursors 作為 Windows 資源管理器的“根”目錄
5Explorer /select, C:WindowsCursorsbanana.ani此命令啟動 Windows 資源管理器後選定“C:WindowsCursorsbanana.ani”檔案。
6Explorer /root, \servershare, select, Program.exe此命令啟動 Windows 資源管理器時以遠端共用作為“根”資料夾,而且 Program.exe 檔案將被選中

以上就是C#實現開啟指定目錄和指定檔案的範例程式碼的詳細內容,更多關於C#開啟指定目錄 檔案的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com