= private = protected
ensure_cache_path(path)
Make sure a file path’s directories exist.
# File activesupport/lib/active_support/cache/file_store.rb, line 193 def ensure_cache_path(path) FileUtils.makedirs(path) unless File.exist?(path) end