程序使用 Microsoft Visual Studio 文件夹而不是相对路径

发布于 2024-09-13 23:15:12 字数 483 浏览 2 评论 0原文

当我尝试使用下一个代码运行 .aspx 页面时:

System.IO.File.Delete("~/img/afisha/" + fileName);

它会写入一条消息:“找不到路径 'C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\~\img\afisha\brs_01 的部分路径。 jpg'。” 但我需要使用相对路径。

附:连接字符串也会发生同样的情况:

有什么想法吗? (它能在服务器上正常工作吗?)

When I try to run .aspx page with next code:

System.IO.File.Delete("~/img/afisha/" + fileName);

it writes a message: "Could not find a part of the path 'C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\~\img\afisha\brs_01.jpg'."
But I need to use relative path.

ps. the same thing happens with the connection string: <add name="accessConStr" connectionString="Provider=Microsoft.ACE.OLEDB.12.0; data source=ExpertBase.mdb; Persist Security Info=False;" providerName="System.Data.OleDb"></add>

Any ideas? (and will it work on the server properlly?)

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

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

发布评论

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

评论(1

昔日梦未散 2024-09-20 23:15:12

尝试使用 Server.MapPath()

System.IO.File.Delete(Server.MapPath("~/img/afisha/" + fileName));

作为连接字符串,您可以尝试使用变量字符串

internal readonly string CONNECTION_STRING = "Provider=Microsoft.ACE.OLEDB.12.0; data source={0}; Persist Security Info=False;"

internal static string ConnectionString
{   
    get 
    { 
         return string.Format(CONNECTION_STRING, 
             Server.MapPath("~/ExpertBase.mdb")); 
    } 
}

Try Server.MapPath()

System.IO.File.Delete(Server.MapPath("~/img/afisha/" + fileName));

for the connection string you can try using a variable string instead

internal readonly string CONNECTION_STRING = "Provider=Microsoft.ACE.OLEDB.12.0; data source={0}; Persist Security Info=False;"

internal static string ConnectionString
{   
    get 
    { 
         return string.Format(CONNECTION_STRING, 
             Server.MapPath("~/ExpertBase.mdb")); 
    } 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文