1. 程式人生 > 其它 >.Net杏鑫註冊開源專案Files 是一款適用於 Windows 的檔案管理器

.Net杏鑫註冊開源專案Files 是一款適用於 Windows 的檔案管理器

#杏鑫註冊開源專案簡介

Files 是一款適用於 Windows 的檔案管理器,具有強大而直觀的設計。它具有多個選項卡、窗格、列、上下文選單和標籤中的外殼擴充套件等功能。

使用

克隆地址:git clone https://github.com/files-community/Files _ _

要在開發模式下構建應用程式,請在 Visual Studio (Files.sln) 中開啟 sln 檔案,並通過在解決方案資源管理器中右鍵單擊並Files.Package點選“設定為啟動項”將 Files.Package 專案設定為啟動項。

配置檔案

終端配置檔案

檔案支援配置終端配置檔案的多個選項。除了設定可以從“在終端中開啟”選項啟動的預設終端外,您還可以調整啟動引數。您還可以通過在導航欄中鍵入名稱或路徑來啟動任何終端配置檔案。只有安裝了相應的終端,配置檔案才會起作用。從 v0.9.2 開始,Files 將自動檢測是否安裝了 Windows Terminal 和 Fluent Terminal。

樣本配置檔案

命令:


{
      "name": "CMD",
      "path": "cmd.exe",
      "arguments": "/k "cd /d {0} && title Command Prompt"",
      "icon": ""
}

電源外殼


{
      "name": "PowerShell",
      "path": "powershell.exe",
      "arguments": "-noexit -command "cd '{0}'"",
      "icon": ""
}
PowerShell 核心:

{
      "name": "PowerShell Core",
      "path": "pwsh.exe",
      "arguments": "-WorkingDirectory "{0}"",
      "icon": ""
}
Windows 終端:

{
      "name": "Windows Terminal",
      "path": "wt.exe",
      "arguments": "-d "{0}"",
      "icon": ""
}
流暢的終端:

{
      "name": "Fluent Terminal",
      "path": "flute.exe",
      "arguments": "new "{0}"",
      "icon": ""

}