vote up 0 vote down star

From a virtualpath, I need to get his name.

How can I do this?

Since people think that I'm talking about file system here an example of what I need.

With asp.net routing you can associate a name to a virtual file linked to a physical file. For an example, I can give the name homeEn to http://mysite.com/home which is linked to the physical file ~/homepage.aspx. What I need is from the virtual file http://mysite.com/home to get back homeEn name.

flag

2 Answers

vote up 0 vote down

Tried Path.GetFileName?

link|flag
no, I'm talking about asp.net routing, not filesystem – Fredou Nov 6 at 13:31
Path.GetFileName("/random/stuff/a.txt") returns "a.txt" and will work with your virtual paths. – Simon Svensson Nov 6 at 14:51
With asp.net routing you can associate a name to a virtualfile linked to a physical file. For an example, I can give the name homeEn to mysite.com/home which is linked to the physical file ~/homepage.aspx. What I need is from the virtual file mysite.com/home to get back homeEN name. – Fredou Nov 6 at 19:41
vote up 0 vote down

I think what you are looking for is like... plz check this.

//String path = Server.MapPath("Admin") + "logo.gif"; like this is your server mappath functionality
    String path = "D:\\Projects\\abc.WEBUI\\Admin\\logo.gif";// it will return this value
    String fileName = path.Substring((path.Replace("\\", "/")).LastIndexOf('/') + 1);
    //here fileName will be equal to logo.gif
link|flag
no, I'm talking about asp.net routing, not filesystem – Fredou Nov 6 at 13:32

Your Answer

Get an OpenID
or

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