QuorumDMS / ftp-srv

📮 Modern FTP Server
MIT License
387 stars 116 forks source link

Disable Delete command #357

Closed christophe77 closed 1 year ago

christophe77 commented 1 year ago

Is there a way to disable the delete command? I don't want the users to be able to delete files.

lucasantoiemma commented 1 year ago

Hi @christophe77 have you tried to pass the option blacklist = ["DELE", "RMD"]? DELE to avoid file deletion RMD to avoid folder deletion Let me know if it worked! Enjoy your day!

christophe77 commented 1 year ago

Hi @christophe77 have you tried to pass the option blacklist = ["DELE", "RMD"]? DELE to avoid file deletion RMD to avoid folder deletion Let me know if it worked! Enjoy your day!

It works! Thanks a lot!

lucasantoiemma commented 1 year ago

Excellent! You're welcome!