1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/sample/dir.rb
2019-08-19 17:30:59 +09:00

12 lines
189 B
Ruby

# directory access
# list all files but .*/*~/*.o
dirp = Dir.open(".")
for f in dirp
case f
when /\A\./, /~\z/, /\.o\z/
# do not print
else
print f, "\n"
end
end
dirp.close