FubarDevelopment / FtpServer

Portable FTP server written in .NET
http://fubardevelopment.github.io/FtpServer/
MIT License
472 stars 161 forks source link

multiple directory for a user #130

Closed stephane3434 closed 2 years ago

stephane3434 commented 2 years ago

how to assign multiple ftp for a user directory.

as for example /myDir1 /myDir2 /myDir2/Test

and then how to assign read/write rights for each folder

should we use InMemoryDirectory and create virtual directories?

I can't see how to do it.

Thank you

fubar-coder commented 2 years ago
  1. Every user has only a (virtual) root directory
  2. Access rights are managed by the native (OS) file system
  3. The in-memory file system should be a good starting point to create what you need