Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Can you show us how you what method you are calling and how you are calling it? The reason why I ask is because @ismaelga 's answer works fine for me too. – Martin Velez Sep 9 '12 at 6:02
I had tried using FileUtils.rm_rf('directorypath/name') as @ismealga suggested, as well as rm -rf @{path} but as I was not correctly closing my files, they were creating those temporary ones – Ced Sep 10 '12 at 3:06

2 Answers

require 'fileutils'

FileUtils.rm_rf('directorypath/name')

Doesn't this work?

share|improve this answer
No, it creates those files, and doesn't delete the directory – Ced Sep 9 '12 at 1:10
can it be because you don't have permissions to delete them? – Ismael Abreu Sep 9 '12 at 1:23
I'm pretty sure I have permission to change them, as they are being created in the same program, and I can delete individual files without issue – Ced Sep 9 '12 at 1:36

Realised my error, some of the files hadn't been closed. I earlier in my program I was using

File.open(filename).read

which I swapped for a

f = File.open(filename, "r")
while line = f.gets
    puts line
end
f.close

And now

FileUtils.rm_rf(dirname)

works flawlessly

share|improve this answer
1  
If you're just reading the full file, you can do File.read filename (at least in MRI, I don't think JRuby or Rubinius support this yet), and if you want to do it the way you're showing, it's better to use the block form, because it ensures the file gets closed: File.open(filename, "r") { |file| ... } or File.foreach(filename) { |line| ... } – Joshua Cheek Sep 9 '12 at 4:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.