How can I hide certain folders to FTP users where they can currently view them since their root dir is outside of the folder I want to hide?
Thanks!
How can I hide certain folders to FTP users where they can currently view them since their root dir is outside of the folder I want to hide?
Thanks!
// Gary
For proftpd
add to your proftpd.conf file:
<Directory ~>
HideFiles ^dirname$
</Directory>
<Limit ALL>
IgnoreHidden on
</Limit>