gpt4 book ai didi

c# - MVC 应用程序在 IIS Express 中运行良好,但在本地 IIS Web 服务器中运行不正常

转载 作者:太空宇宙 更新时间:2023-11-03 15:11:56 25 4
gpt4 key购买 nike

我创建了一个网络应用程序来打开本地目录中的文件(无论是记事本、excel、PDF 等)。在 IIS Express 中运行时文件正在打开,但在 IIS 本地 Web 服务器中,它没有打开文件。

我在 Visual Studio 的项目中有文件。

System.IO.DirectoryInfo dir = new System.IO.DirectoryInfo(@"D:// Path ");

IEnumerable<System.IO.FileInfo> fileList = dir.GetFiles("*.*");
var newestFile =
(from file in fileList
//where file.Contains(para)
orderby file.CreationTime
where file.FullName.Contains(para)
select new { file.FullName, file.CreationTime })
.Last();

Process.Start(newestFile.FullName);

return "";

最佳答案

为您存储文件的文件夹授予 IISUser 适当的权限。

希望这会有所帮助。

关于c# - MVC 应用程序在 IIS Express 中运行良好,但在本地 IIS Web 服务器中运行不正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40803658/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com