smartgal wrote:
> Suppose I have create a 1 folder named "Anj" on any server.i have
> given usen name password for it.now i want to access it through Ftp
> in
> one link like "ftp://....../Anj". But then i can not access this
> folder without giving the credentilas name .I'll have to enter each
> time these credentilas to access this folder.
> is there any way to set credentials in one link i.e. how can i create
> a link through which we can access this folder without giving the
> credentials name.Pls. help on it
>
This syntax works in many contexts, but it's not recommended:
ftp://user
assword@site/path
This is a big security risk since the credentials are stored and displayed
as plaintext. There may be some use for links like these on a website, but
there is no excuse for using these links from a program.
A better solution to this is to store the credentials somewhere secure and
log in programmatically instead. Another option is to simply allow anonymous
access and secure access to the server itself over a VPN.
--
J.