From: John William Date: 2010-04-23T08:24:56+09:00 Subject: change to a newly created directory Ruby Beginner I have a command line script that captures a single argument and creates a directory in that name. I then want to copy some directories inside of this newly created directory. I can't seem to figure out how to change to the new directory. require 'FileUtils' file_name = ARGV[0] FileUtils.mkdir file_name # Creates top level directory # I want this folder to be subdirectory of the newly created top-level directory FileUtils.mkdir_p '/images' Thanks John -- Posted via http://www.ruby-forum.com/.