(精華)2020年7月1日 ASP.NET Core 使用靜態檔案和目錄瀏覽
public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ILoggerFactory loggerFactory)
{
#region 使用靜態檔案和目錄瀏覽
app.UseStaticFiles(new StaticFileOptions
{
FileProvider = new PhysicalFileProvider("D:/MyStaticFiles"),//檔案路徑,一定是絕對路徑
RequestPath = "/StaticFiles",//請求的路徑,一定是絕對路徑 /
ServeUnknownFileTypes = true,//支援未知的檔案型別
DefaultContentType = "application/octet-stream"//預設的檔案編碼
})
.UseDirectoryBrowser(new DirectoryBrowserOptions
{
FileProvider = new PhysicalFileProvider(Path.Combine(Directory.GetCurrentDirectory(), "files")),
RequestPath = new Microsoft.AspNetCore.Http.PathString("/file")
})
.UseFileServer(true)//融合靜態檔案和目錄
#endregion
}
相關文章
- asp.net core 系列之靜態檔案ASP.NET
- Asp.Net Core入門之靜態檔案ASP.NET
- ASP.NET Core靜態檔案處理原始碼探究ASP.NET原始碼
- asp .net core 靜態檔案資源
- 瀏覽器解析html檔案src靜態資源路徑問題瀏覽器HTML
- Asp-Net-Core開發筆記:使用NPM和gulp管理前端靜態檔案筆記NPM前端
- gitignore 忽略目錄下檔案僅保留目錄形態Git
- .Net Core 中介軟體之靜態檔案(StaticFiles)
- Linux如何在目錄下靈活建立、瀏覽、刪除百萬個檔案Linux
- Linux檔案和目錄管理Linux
- 【asp.net core 系列】5 佈局頁和靜態資源ASP.NET
- apache關閉目錄瀏覽功能Apache
- Jupyter預設目錄和預設瀏覽器修改瀏覽器
- ASP.NET Core 2.0 自定義 _ViewStart 和 _ViewImports 的目錄位置ASP.NETViewImport
- ASP.NET Core 配置檔案ASP.NET
- ASP.NET Core - 入口檔案ASP.NET
- Sanic 靜態檔案
- 使用Java HttpWebServer建立靜態檔案web伺服器並設定子路徑指向本地自定義目錄JavaHTTPWebServer伺服器
- ASP .Net Core 中介軟體的使用(一):搭建靜態檔案伺服器/訪問指定檔案伺服器
- 8.var目錄下的檔案和目錄詳解
- Linux基礎之瀏覽和建立檔案Linux
- adb命令管理Linux 檔案和目錄Linux
- 在 Linux 中如何歸檔檔案和目錄Linux
- OmniMarkupPreviewer 使用自定義的瀏覽器預覽markdown檔案View瀏覽器
- Django基礎二靜態檔案和ORMDjangoORM
- Django 教程之media和static靜態檔案Django
- ASP.Net Core5.0 EF Core使用記錄ASP.NET
- nginx偽靜態檔案Nginx
- 【ZIP】打包過濾指定目錄和檔案
- Linux用inotify監聽檔案和目錄Linux
- Linux的檔案屬性和目錄配置Linux
- 筆記:Linux命令(目錄和檔案管理)筆記Linux
- 無緩衝檔案IO和目錄操作
- SSH三大框架使用谷歌瀏覽器上傳檔案瀏覽器崩潰框架谷歌瀏覽器
- 使用靜態基類方案讓 ASP.NET Core 實現遵循 HATEOAS Restful Web APIASP.NETRESTWebAPI
- c# .Net Core靜態檔案伺服器學習總結C#伺服器
- fastapi 使用本地靜態檔案替換 swagger cdnASTAPISwagger
- Golang1.16 使用embed載入靜態檔案Golang