How to remove old ftp user directory?

Hi everybody.
I have trouble trying to delete old ftp user directory because of .ftpquota.

command: CWD /asd reply: 250 OK. Current directory is /asd command: PWD reply 257 "/asd" is your current location command: DELE .ftpquota reply 553 Prohibited file name: .ftpquota command: CWD / reply 250 OK. Current directory is / command: RMD asd reply 550 Can't remove directory: Directory not empty status: getting list of directories... command: PASV reply 227 Entering Passive Mode (176,9,52,231,185,41) command: MLSD reply 150 Accepted data connection reply 226-Options: -a -l reply 226 8 matches total status: getting list of directories... done
I have tried to chmod .ftpquota - now it’s 600 to 777 but i couldn’t
Anybody have an idea how to remove this dir?

Hello,
you have an answer of your pm.

For everybody who find it sometime in future:
use this script:

<?php header('Content-Type: text/plain'); echo (@unlink('.ftpquota')?'deleted!':'can\'t delete .ftpquota, already deleted?'); ?>
And now thank fishi because he share this information :wink: