Skip to content

Instantly share code, notes, and snippets.

@triacontane
Created January 20, 2016 12:16
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 triacontane/c9df83292f508733a9ad to your computer and use it in GitHub Desktop.
Save triacontane/c9df83292f508733a9ad to your computer and use it in GitHub Desktop.
ピクチャ一覧を取得
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