Answers for "change folder location file ruby"

0

ruby change directory

Dir.chdir "directory"

# Usage with a block
Dir.chdir "directory" do
  # block run inside "directory"
  puts Dir.pwd
end
# cwd is unaffected afterwards
puts Dir.pwd
Posted by: Guest on June-22-2021

Code answers related to "change folder location file ruby"

Browse Popular Code Answers by Language