Skip to content

Instantly share code, notes, and snippets.

@ammaaim
Created July 20, 2015 08:36
Show Gist options
  • Save ammaaim/042993c55ea6ba3c84d5 to your computer and use it in GitHub Desktop.
Save ammaaim/042993c55ea6ba3c84d5 to your computer and use it in GitHub Desktop.
Create folder if not exist
directory_name = "name"
Dir.mkdir(directory_name) unless File.exists?(directory_name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment