public Method

Sys.makedirs(*dirs)

Make the directories given in dirs.

Source Code

# File rake/contrib/sys.rb, line 135
def makedirs(*dirs)
  dirs.each do |fn|
    log "Making directory #{fn}"
    File.makedirs(fn)
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.