I'm trying to delete a non-empty directory in Ruby and no matter which way I go about it it refuses to work. I have tried using FileUtils, system calls, recursively going into the given directory and deleting everything, but always seem to end up with (temporary?) files such as
._afsECFC
._afs73B9
Anyone know why this is happening and how I can go around it?
Thanks

FileUtils.rm_rf('directorypath/name')as @ismealga suggested, as well asrm -rf @{path}but as I was not correctly closing my files, they were creating those temporary ones – Ced Sep 10 '12 at 3:06