检查 ASP.NET 中的服务器中是否存在文件

发布于 2024-08-21 19:44:49 字数 440 浏览 6 评论 0原文

        string jSFile = ResolveUrl("~/MyProject/JavaScripts/dir/test.js");
        if (!System.IO.File.Exists(jSFile))
        {
           ...
        }

这段代码不起作用,我猜这是 jSFile 与 IO.File.Exists 不能很好地配合,但我知道 jSFile 有一个有效的路径,因为当我稍后使用几行时,

Page.ClientScript.RegisterClientScriptInclude("myfile",jSFile); 

它就可以了将 JavaScript 文件附加到 ASPX,一切正常。

知道如何检查文件是否存在吗?

        string jSFile = ResolveUrl("~/MyProject/JavaScripts/dir/test.js");
        if (!System.IO.File.Exists(jSFile))
        {
           ...
        }

This code doesn't work and I guess it's the jSFile that doesn't work well with the IO.File.Exists but I know the jSFile has a valid path because when I use few line later

Page.ClientScript.RegisterClientScriptInclude("myfile",jSFile); 

it does attach the JavaScript file to the ASPX and all work fine.

Any idea of how to check if the file exist?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满地尘埃落定 2024-08-28 19:44:49
if (!System.IO.File.Exists(Server.MapPath(jSFile)))
if (!System.IO.File.Exists(Server.MapPath(jSFile)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文