Asp classic: get the current path of the file located in the admin folder

I have a file located in a folder whose full path looks something like this:

\ my_machine \ mydrive $ \ Inetpub \ Wwwroot \ my_folder

is it possible to get the same value through asp serverVariables? I am afraid to expose the path above in my source code. thanks!

+4
source share
1 answer

if anyone is wondering if i found a solution. I used

Server.MapPath(".") 
+14
source

All Articles