Created
December 5, 2016 01:58
-
-
Save RachelSa/9c7b1bbf6e3d4818b5361ce1b9e87b56 to your computer and use it in GitHub Desktop.
Dir.foreach
This file contains 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 emoji_finder(file_path) | |
Dir.foreach(file_path) {|pic| | |
if pic[-3..-1] == 'png' | |
puts pic | |
end | |
} | |
end | |
emoji_finder('/Users/rachel/dev/EmojiFinder/ProfileImages') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment