Skip to content

Instantly share code, notes, and snippets.

@andyhawthorne
Created August 26, 2012 22:35
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 andyhawthorne/3483963 to your computer and use it in GitHub Desktop.
Save andyhawthorne/3483963 to your computer and use it in GitHub Desktop.
method for listing files
def get_files(path)
dir_list_array = Array.new
Find.find(path) do |f|
dir_list_array << File.basename(f, ".*") if !File.directory?(f)
end
return dir_list_array
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment