Created
January 20, 2016 12:16
-
-
Save triacontane/c9df83292f508733a9ad to your computer and use it in GitHub Desktop.
ピクチャ一覧を取得
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
var fs = require('fs'); | |
var path = window.location.pathname.replace(/(\/www|)\/[^\/]*$/, '/img/pictures/'); | |
if (path.match(/^\/([A-Z]\:)/)) { | |
path = path.slice(1); | |
} | |
console.log(fs.readdirSync(path)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment