Is it possible to hide directories with Proftpd?
Specifically .svn directories.
There is a HideFiles but not a HideDirectories directive. The problem with HideFiles is that it doesn't match on full path.
<Directory /home/ftp_user/my_project >
# Despite trying to hide this directory it still shows up
# as /.svn in the ftp client.
HideFiles "^\.svn"
<Limit ALL>
allowuser ftp_user
</Limit>
</Directory>
Is there another way to hide directories?