Ruby:目录类方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ruby:目录类方法相关的知识,希望对你有一定的参考价值。
puts File.dirname(__FILE__) #Keeps track of where you are at this moment, it might change often puts Dir.pwd #Change Directory #puts Dir.chdir( File.join('', '') ) #An array of info within the directories puts Dir.entries('.') #Code block of files within a directory Dir.entries('.').each do |entry| print entry + ": " if File.file?(entry) && File.readable?(entry) File.open(entry, 'r') do |file| puts file.gets end else puts end end Dir.foreach("."){ |entry| puts entry } Dir.mkdir('temp_directory') Dir.delete('temp_directory')
以上是关于Ruby:目录类方法的主要内容,如果未能解决你的问题,请参考以下文章