Web root directory

X

xxxx

Hi all,


i'm trying to write a piece of code using c# that will return the
physical location of the web root directory.

Actually, i was able to retrieve the list of available virtual
directories on my localhost using System.DirectoryServices but all the
paths i get are vurtual ones, but i want their actual or physical
location, so i thought of getting the web root folder and then mapping
the virtual path of all other folders to it

i'm using c#, VS2003 and IIS 6.0

any ideas :D

thanx for ur quick reply
 
L

Laurent Bugnion [MVP]

Hi,
Hi all,


i'm trying to write a piece of code using c# that will return the
physical location of the web root directory.

Actually, i was able to retrieve the list of available virtual
directories on my localhost using System.DirectoryServices but all the
paths i get are vurtual ones, but i want their actual or physical
location, so i thought of getting the web root folder and then mapping
the virtual path of all other folders to it

i'm using c#, VS2003 and IIS 6.0

any ideas :D

thanx for ur quick reply

I think that this does what you want:

string strPath = this.Request.MapPath( "/" );

Does it?

HTH,
Laurent
 
X

xxxx

actually i'm building a desktop applicatio not a web appliaction

Hi,




i'm trying to write a piece of code using c# that will return the
physical location of the web root directory.
Actually, i was able to retrieve the list of available virtual
directories on my localhost using System.DirectoryServices but all the
paths i get are vurtual ones, but i want their actual or physical
location, so i thought of getting the web root folder and then mapping
the virtual path of all other folders to it
i'm using c#, VS2003 and IIS 6.0
any ideas :D
thanx for ur quick replyI think that this does what you want:

string strPath = this.Request.MapPath( "/" );

Does it?

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering:http://www.galasoft-LB.ch
PhotoAlbum:http://www.galasoft-LB.ch/pictures
Support children in Calcutta:http://www.calcutta-espoir.ch- Hide quoted text -- Show quoted text -
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top