Hi, I am getting an exception when I use Dir.delete on a non empty
directory.
What should I do to remove a non empty directory?
Thanks,
Kostas
Hi, I am getting an exception when I use Dir.delete on a non empty
directory.
What should I do to remove a non empty directory?
Thanks,
Kostas
On Jun 18, 1:32 pm, Kostas Z. [email protected]
wrote:
Hi, I am getting an exception when I use Dir.delete on a non empty
directory.
What should I do to remove a non empty directory?Thanks,
Kostas–
Posted viahttp://www.ruby-forum.com/.
Use Dir.each to iterate over the items in the dir, and call
File.delete on them. Then call Dir.delete.
On Jun 18, 8:28 am, Kaldrenon [email protected] wrote:
–
Posted viahttp://www.ruby-forum.com/.Use Dir.each to iterate over the items in the dir, and call
File.delete on them. Then call Dir.delete.
Or use FileUtils::rm_rf:
http://www.ruby-doc.org/core/classes/FileUtils.html#M004368
Be careful though.
b
[email protected] wrote:
On Jun 18, 8:28 am, Kaldrenon [email protected] wrote:
–
Posted viahttp://www.ruby-forum.com/.Use Dir.each to iterate over the items in the dir, and call
File.delete on them. Then call Dir.delete.Or use FileUtils::rm_rf:
http://www.ruby-doc.org/core/classes/FileUtils.html#M004368
Be careful though.
b
Thanks a lot!
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs