Skip to content

Instantly share code, notes, and snippets.

Created February 10, 2014 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/8921030 to your computer and use it in GitHub Desktop.
Save anonymous/8921030 to your computer and use it in GitHub Desktop.
Jruby 1.7 Windows Directory Listing Bug
#does not print anything
Dir["c:\\code\\opensource\\jruby\\*"].each do |file|
puts '\\' + file
end
#prints files in the directory
Dir["c:/code/opensource/jruby/*"].each do |file|
puts '/' + file
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment