FTP user management system
I want to build C#, WPF application for FTP user management. It is getting difficult than what i thought initially.
Requirement is pretty simple: I should be 开发者_如何学运维able to create users and should be able to control their access to folders.
Not able to find out specific classes in .net so not sure where shall i start from.
Any link or sample available on this?
Thanks in advance.
Regards, Ujjwal
FTP as a protocol doesn't provide any means for managing users, neither servers support such mechanisms. If you have your own FTP/FTPS server implementation, you can make use of custom commands (but you will need a client-side protocol implementation that supports custom commands). If you want to manage users of existing FTP servers, then I am afraid you are out of luck.
精彩评论