Possible Duplicate:
Path.Combine for Urls?




我有一个像http://localhost/这样的根目录

我有一个文件名为sample.jpg

当我使用Path.Combine(root,file)时,得到类似http://localhost \ sample.jpg之类的东西,我想知道是否可以得到http://localhost/sample.jpg

最佳答案

Path.Combine是为文件系统路径而不是URL设计的,因此在这种情况下,我认为它不能满足您的需求。您始终可以执行Path.Combine,然后再执行String.Replace("\", "/")来更正您的URL。

关于c# - 路径合并问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4181559/

10-10 18:19