|
Re: can not delete folder on my web space
In Unix, you have to specify a switch to delete a directory (no such thing as folders - that's Microsoft) that contains files (including subdirectories). Hidden files will start with a period - e.g. .hidden - and will be visible with ls -la
rm -r directory-name
rm -R directory-name
There's a difference between R and r but I can't remember - it's not important. The command rmdir will only delete empty directories.
|