Flowdock
fu_mkdir(path, mode) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/fileutils.rb, line 241
  def fu_mkdir(path, mode)   #:nodoc:
    path = path.sub(%</\z>, '')
    if mode
      Dir.mkdir path, mode
      File.chmod mode, path
    else
      Dir.mkdir path
    end
  end
Register or log in to add new notes.