摘要:
得到当前目录或者父目录操作如下require 'pathname'puts Pathname.new(__FILE__).realpathputs Dir.pwdputs File.dirname(__FILE__)puts File.expand_path("..",Dir.pwd)puts File.expand_path(".",Dir.pwd)puts __FILE__puts File.expand_path('../.')如果试图读取其他文件夹下的文件,可以使用File.joininput = File.new 阅读全文