Chdir Method with Block

Aug 22
2008
# temporary changes the cwd to '/tmp',
# adds content to a file and finally restores cwd
 
p Dir.getwd
 
Dir.chdir("/tmp") do
  p Dir.getwd
  File.open("test.txt", "a") do |f|
    f << Time.now << "\n"
  end
end
 
p Dir.getwd

Comments are closed.

Calendar

August 2008
M T W T F S S
« Jul   Sep »
 123
45678910
11121314151617
18192021222324
25262728293031

Tags