473,386 Members | 1,679 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Path to URL

Oks, I know I'm going to seem completely stupid here but, I have a question
thats been doing my head in for the last few hours.

Basically, I'm trying to find a way to turn a folder and file path, from the
path, to the actual URL.

For example, if you were to type;

Response.Write <a href=" & folder.name & ">" & folder.name & "</a>"

It would automatically go to the URL of the folder, rather than the file,
but would display the link as the folder's name.

Doing it as;

Response.Write <a href=" & folder.name & ">" & folder.path & "</a>"

Will show the actual server path to the folder (i.e.
e:\myserver\myfolder\current_folder)

What I would like to do is have it so, instead of showing the folder's name,
or path, it would show the actual URL and not the server path, as the
folder.path does........

Hope I'm making sense here?.....

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

Disclaimer:
I know I'm probably wrong, I just like taking part ;o)

Jul 19 '05 #1
2 4684
You'll have to build it from the URL to the web site containing the
directory that the file is in and the file name. There is no simple way to
map a file path to an HTTP URL even though you are sure that the file is in
a web site (not possible at all if the file is not in a web site).

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Steven Burn" <nobody@PVT_it-mate.co.uk> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Oks, I know I'm going to seem completely stupid here but, I have a question thats been doing my head in for the last few hours.

Basically, I'm trying to find a way to turn a folder and file path, from the path, to the actual URL.

For example, if you were to type;

Response.Write <a href=" & folder.name & ">" & folder.name & "</a>"

It would automatically go to the URL of the folder, rather than the file,
but would display the link as the folder's name.

Doing it as;

Response.Write <a href=" & folder.name & ">" & folder.path & "</a>"

Will show the actual server path to the folder (i.e.
e:\myserver\myfolder\current_folder)

What I would like to do is have it so, instead of showing the folder's name, or path, it would show the actual URL and not the server path, as the
folder.path does........

Hope I'm making sense here?.....

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

Disclaimer:
I know I'm probably wrong, I just like taking part ;o)

Jul 19 '05 #2
I'VE DONE IT!!!!........WOOHOO!

hehe, probably not the best way but, I've re-written one of the functions I
wrote for one of my VB app's, and it works....kinda

<%
strPath = " - http://" & request.servervariables("SERVER_NAME") &
StripABSPath(fl.Path)

Function StripABSPath(name)
Dim path
path = Split(name, "htdocs")
StripABSPath = path(UBound(path))
End Function

%>
--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

Disclaimer:
I know I'm probably wrong, I just like taking part ;o)
Mark Schupp <ms*****@ielearning.com> wrote in message
news:O2**************@TK2MSFTNGP11.phx.gbl...
You'll have to build it from the URL to the web site containing the
directory that the file is in and the file name. There is no simple way to
map a file path to an HTTP URL even though you are sure that the file is in a web site (not possible at all if the file is not in a web site).

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Steven Burn" <nobody@PVT_it-mate.co.uk> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Oks, I know I'm going to seem completely stupid here but, I have a

question
thats been doing my head in for the last few hours.

Basically, I'm trying to find a way to turn a folder and file path, from

the
path, to the actual URL.

For example, if you were to type;

Response.Write <a href=" & folder.name & ">" & folder.name & "</a>"

It would automatically go to the URL of the folder, rather than the file, but would display the link as the folder's name.

Doing it as;

Response.Write <a href=" & folder.name & ">" & folder.path & "</a>"

Will show the actual server path to the folder (i.e.
e:\myserver\myfolder\current_folder)

What I would like to do is have it so, instead of showing the folder's

name,
or path, it would show the actual URL and not the server path, as the
folder.path does........

Hope I'm making sense here?.....

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

Disclaimer:
I know I'm probably wrong, I just like taking part ;o)


Jul 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

31
by: John Roth | last post by:
I'm adding a thread for comments on Gerrit Holl's pre-pep, which can be found here: http://tinyurl.com/2578q Frankly, I like the idea. It's about time that all of the file and directory stuff...
9
by: Bengt dePaulis | last post by:
I have a local directory that I want to include in my sys.path How to save it permanently? Regards /Bengt
70
by: Michael Hoffman | last post by:
Many of you are familiar with Jason Orendorff's path module <http://www.jorendorff.com/articles/python/path/>, which is frequently recommended here on c.l.p. I submitted an RFE to add it to the...
34
by: Reinhold Birkenfeld | last post by:
Hi, the arguments in the previous thread were convincing enough, so I made the Path class inherit from str/unicode again. It still can be found in CVS:...
2
by: Rob Cowie | last post by:
Hi, Given a string representing the path to a file, what is the best way to get at the filename? Does the OS module provide a function to parse the path? or is it acceptable to split the string...
1
by: William Stacey [MVP] | last post by:
I need a bullet proof way to combine a root and a relative path to form a FQ rooted path (similar to a VDir in IIS). Path.Combine alone will not do the job in all cases. I also need to be sure...
4
by: python | last post by:
Bad file names, i.e. filenames the OS considers illegal, will cause functions in the os.path module to raise an error. Example: import os.path print os.path.getsize( 'c:/pytest/*.py' ) On...
34
by: Alexnb | last post by:
Gerhard Häring wrote: No, it didn't work, but it gave me some interesting feedback when I ran it in the shell. Heres what it told me: Traceback (most recent call last): File...
8
by: moondaddy | last post by:
I'm posting code for a user control ( FunctionConnectorSelector) below which has 3 content controls in it. each content control uses a style from a resource dictionary merged into the app.xaml...
6
by: bukzor | last post by:
I have to go into these convulsions to get the directory that the script is in whenever I need to use relative paths. I was wondering if you guys have a better way: from os.path import dirname,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.