summaryrefslogtreecommitdiff
path: root/sample/dir.rb
blob: 44733c2cf42a2a27306fdc4978cbfe8ff140019a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# directory access
# list all files but .*/*~/*.o
dirp = Dir.open(".")
for f in dirp
  case f
  when /\A\./, /~\z/, /\.o/
    # do not print
  else
    print f, "\n"
  end
end
dirp.close