Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Temporary directory

  • tempname
  • tempdir
  • file_utils
  • FileUtils
  • rm_rf
  • cd
require "file_utils"

tempdir = File.tempname
FileUtils.mkdir(tempdir)
original = Dir.current
puts tempdir
FileUtils.cd(tempdir)

File.write("welcome.txt", "Hello World")

FileUtils.cd(original)
FileUtils.rm_rf(tempdir)