Skip to content

Instantly share code, notes, and snippets.

@bhelx
Created October 8, 2011 06:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhelx/1271945 to your computer and use it in GitHub Desktop.
Save bhelx/1271945 to your computer and use it in GitHub Desktop.
write a file in a directory that may not exist
require 'fileutils'
def deep_write(f, data)
FileUtils.mkdir_p(File.dirname(f)) unless File.directory?(File.dirname(f))
File.open(f, 'w').write(data)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment