• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Asp.netcore静态文件目录访问

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

如果使用Asp.net core来实现一个能够访问其它电脑上的资源

如何将静态文件注入到项目中
在startup.cs文件的Configure方法中写入:

app.UseStaticFiles();//提供将wwwroot目录开放访问,例如:http://localhost:52723/css/site.css将访问wwwroot目录下的css目录中的site.css文件

  

这方法的默认路径就是wwwroot目录

      • 如何使用自定义的文件路径
        在startup.cs文件的Configure方法中写入:
      • app.UseStaticFiles(new StaticFileOptions()//自定义自己的文件路径,例如提供访问D盘下的Study目录,http://localhost:52723/MyStudy/README.md将访问D盘的Study目录中的README.md文件
                    {
                        FileProvider = new PhysicalFileProvider(@"D:\Study"),//指定实际物理路径
                        RequestPath = new PathString("/MyStudy")//对外的访问路径
                    });
        

 如何浏览目录的文件与文件夹
首先在startup.cs文件的Configure方法中写入: 

app.UseDirectoryBrowser(new DirectoryBrowserOptions()//提供文件目录访问形式
            {
                FileProvider = new PhysicalFileProvider(@"D:\Study"),
                RequestPath = new PathString("/Study")
            });

  

    • 浏览目录以及访问文件
app.UseFileServer(new FileServerOptions()//直接开启文件目录访问和文件访问
            {
                EnableDirectoryBrowsing = true,//开启目录访问
                FileProvider = new PhysicalFileProvider(@"D:\Git"),
                RequestPath = new PathString("/Git")
            });

  

/// <summary>
        /// 全盘符文件服务
        /// </summary>
        /// <param name="app"></param>
        public static void UseLocalService(this IApplicationBuilder app)
        {
            DriveInfo[] driveInfos = DriveInfo.GetDrives();
            foreach (DriveInfo drive in driveInfos)
            {
                string requestPath = drive.Name.Replace(":\\", "");
                FileServerOptions fileServerOptions = new FileServerOptions
                {
                    EnableDirectoryBrowsing = true,
                    //RequestPath = $"/{requestPath}",
                    FileProvider = new PhysicalFileProvider(drive.RootDirectory.FullName)
                };
                fileServerOptions.StaticFileOptions.DefaultContentType = "application/x-msdownload";//
                fileServerOptions.StaticFileOptions.ServeUnknownFileTypes = true;
                FileExtensionContentTypeProvider exten = new FileExtensionContentTypeProvider();
                exten.Mappings.Add(".log", "text/plain");//识别扩展类型
                exten.Mappings.Add(".sln", "text/plain");
                exten.Mappings.Add(".lng", "text/plain");
                fileServerOptions.StaticFileOptions.ContentTypeProvider = exten;
                app.UseFileServer(fileServerOptions);
            }
        }

  


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Asp.netmvcvalidaterequest无效的问题发布时间:2022-07-10
下一篇:
在 Asp.NET MVC 中使用 SignalR 实现推送功能发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap