From: sto.mar@... Date: 2012-10-29T18:23:56+09:00 Subject: Re: csv.rb:1342:in `initialize': No such file or directory Am 29.10.2012 09:05, schrieb Soichi Ishida: > dir = "~/Dropbox/Ruby/FlightLuggage/" > file = "airport.csv" > filename = dir + file this should also work (cross platform): filename = File.expand_path(dir + file) or use Dir.home --