.netcore在浏览器中读取项目文件夹

Configure 添加代码如下:

            //这种是通过请求具体的文件
            app.UseStaticFiles(new StaticFileOptions()
            {
                FileProvider = new PhysicalFileProvider(
                    Path.Combine(Directory.GetCurrentDirectory(), @"Log")
                    ),
                RequestPath = new PathString("/MyLog")
            });

            //通过浏览器访问项目下的文件夹
            app.UseDirectoryBrowser(new DirectoryBrowserOptions()
            {
                FileProvider = new PhysicalFileProvider(
                    Path.Combine(Directory.GetCurrentDirectory(), @"Log")
                    ),
                RequestPath = new PathString("/MyLog")

            });

.netcore在浏览器中读取项目文件夹

ConfigureServices添加代码如下:

 services.AddDirectoryBrowser();

.netcore在浏览器中读取项目文件夹

 

 访问对应的Url

http://localhost:13387/MyLog/

结果

.netcore在浏览器中读取项目文件夹

 

.netcore在浏览器中读取项目文件夹

上一篇:原生js给for循环单个添加事件 ——(js闭包)


下一篇:CUDA11.2环境上MXNet源码和pytorch源码编译