Skip to content

Instantly share code, notes, and snippets.

View wwkeyboard's full-sized avatar
ERR_INSUFFICIENT_COFFEE

Aaron Lee wwkeyboard

ERR_INSUFFICIENT_COFFEE
View GitHub Profile
@wwkeyboard
wwkeyboard / makeFileNameList2.rb
Created August 19, 2011 19:59 — forked from anonymous/makeFileNameList2.rb
Makes file listing all files in a directory
def makeFileNameList2(nameDir,fname)
puts "the beginning"
File.open(fname, "w") do|fname|
puts "in the do"
Dir.foreach(nameDir) {|x| fname.puts file_to_string(x) }
end
puts "after the do"
end