p Dir.pwd #输出当前目录 p Dir.getwd #输出当前目录 list =Dir.entries(Dir.pwd) #遍历目录下的子项并且输出 list.each do |l| p l end