This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |