Created
March 3, 2016 22:57
-
-
Save rrmdn/439e97fe4039dcdd1ed6 to your computer and use it in GitHub Desktop.
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
| // read directory source path | |
| fs.readdir(source, function (err, files) { | |
| if (err) { | |
| console.log('Error finding files: ' + err) | |
| } else { | |
| console.log('Kita dapat filesnya!', files) | |
| } | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment