Apologies if it's been already asked for.

I've always used my site to upload some temporary files and send a quick link to my friends, or some picture to a forum or similar things. Now, the thing that has always left me kept wishing for, is the ability to - instead of getting the ftp address to a certain file, such as in
ftp://somesite.com:@ftp.somesite.com/somefile.php - rather get the link in a format that makes people able to just click on it in their web browsers, for faster access.
As in the example with
ftp://somesite.com:@ftp.somesite.com/somefile.php, perhaps this regular expression could be of use (I'm by no means a regex guru; something I believe JD must be, right?

):
.*(?<=p)\.
That expression would catch
ftp://somesite.com:@ftp. in
ftp://somesite.com:@ftp.somesite.com/somefile.php and then, I could simply choose (granted there is a preference option for it) which prefix I want to add in; say, http:// or
http://www. before the actual path. (I never really understood why some websites include and yet some do not include the www part, but that's another story I guess.)
Anyway. As for my own, highly sophisticated workflow (if I may call it a such), this would come in very handy (yet, I may be the only one wishing for this, yes, no?).