I have a WD 4TB My Cloud Personal Network Attached Storage - NAS - WDBCTL0040HWT-NESN with the latest firmware.
I have a folder that will not delete ! Using Windows 7. I can delete other folders with no problem but this one will not go !
Its not protected I am under Administrator
I have rebooted the drive
I even tried WinSCP I get this error: General failure (server should provide error description).
Error code: 4
Error message from server: Failure
Any thoughts ?
I would suggest you login to the MyCloud’s Linux OS via SSH as root, and delete the offending folder using rm -R. Just make sure you delete the right folder…
And you are better able to forcibly change permissions, or to see if the folder is in use by a process (lsof is your friend!), and all sorts of stuff, not to say the least about getting better verbose output on reason for failure.
change directories with [cd]
make directories with [mkdir]
remove (empty) directories with [rmdir]
remove individual files with [rm]
Recursively delete all files inside a directory with [rm -R {path of folder}]
If you get a “file in use” error, you can use [lsof] to see which processes have files open, to identify the naughty process.
Once you know the name of the naughty process, you can find its PID with [ps -A |grep {name of process}]
Once you know the PID of the naughty process, you can kill it with [kill -9 {PID}]
You can then delete the file/folder, because it wont be in use anymore.