rmdir /path/to/nameOfDirectory
However, it will not remove directories that have not be emptied already.
You can remove a directory that still has files and subdirectories, but it is a little dangerous.
So, be careful when you use the rm command in this manner.
rm -rf /path/to/filenameYouWantToDelete
The -r option means to do it recursively (referring to the hierarchical content inside of subdirectories).
The -f option means to "force" or ignore nonexistent files, without prompts.
No comments :
Post a Comment