vote up 1 vote down star

Hello,

Here is my program: I'm uploading an image(Stream, FileInfo or whatever you like) to a server at this virtual directory: "C:\_Resources\Assets"

But then, I want the server to return the UNC path of that image to display it in an tag, that is to say "http://localhost/Trunk/Assets/image.jpeg"

In fact, I'm trying to do the opposite of the Server.MapPath Method.

How do I get that please?

Thanks.

flag
The solution to your problem is going to be very server specific - the correct way to achieve this for Apache is going to be different for IIS, and both of those will differ from plain Windows file shares. If you want some help, please give the rest of us enough information to help you! Thanks. – Bevan Jun 5 at 2:42

3 Answers

vote up 1 vote down

url = "\\" + Environment.MachineName + Path.GetFullPath(document.FileName).ToString().Split(':')[1];

link|flag
vote up 1 vote down

Why not just create a string and replace the "C:_Resources" with "/Trunk" ? Might not be ideal but it should get you going.

link|flag
vote up 0 vote down

Anyone have a clue?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.