Skip to content

Instantly share code, notes, and snippets.

@isaacs
Created August 8, 2013 23:50
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 isaacs/6189920 to your computer and use it in GitHub Desktop.
Save isaacs/6189920 to your computer and use it in GitHub Desktop.
var fs = require('fs');
console.error(fs.readdirSync('/Users/isaacs/Music/Björk/Medúlla/'));
console.error(fs.statSync('/Users/isaacs/Music/Björk/Medúlla/05 Öll Birtan.mp3'));
process.chdir('/Users/isaacs/Music/Björk/Medúlla/');
console.error(process.cwd());
console.error(process.cwd() === '/Users/isaacs/Music/Björk/Medúlla');
@isaacs
Copy link
Author

isaacs commented Aug 8, 2013

$ ./node b.js
[ '.DS_Store',
  '01 Pleasure Is All Mine (Feat. Icelandic Choir, Mike Patton, Tagaq).mp3',
  '02 Show Me Forgiveness.mp3',
  '03 Where Is the Line (Feat. Gregory Purnhagen, Icelandic Choir, Mike Patton).mp3',
  '04 Vo�kuro� (Feat. Icelandic Choir).mp3',
  '05 O�ll Birtan.mp3',
  '06 Who Is It (Carry My Joy on the Left, Carry My Pain on the Right) (Feat. Tagaq).mp3',
  '07 Submarine (Feat. Robert Wyatt).mp3',
  '08 Desired Constellation (Feat. Icelandic Choir).mp3',
  '09 Oceania (Feat. London Choir).mp3',
  '10 Sonnets_Unrealities XI (Feat. Icelandic Choir).mp3',
  '11 Ancestors (Feat. Tagaq).mp3',
  '12 Mouth\'s Cradle (Feat. Icelandic Choir, Tagaq).mp3',
  '13 Midvikudags.mp3',
  '14 Triumph of a Heart.mp3' ]
{ dev: 16777218,
  mode: 33261,
  nlink: 1,
  uid: 24561,
  gid: 100,
  rdev: 0,
  blksize: 4096,
  ino: 964406,
  size: 2246091,
  blocks: 4392,
  atime: Thu Aug 08 2013 16:50:45 GMT-0700 (PDT),
  mtime: Fri May 31 2013 17:01:20 GMT-0700 (PDT),
  ctime: Mon Jul 01 2013 17:23:09 GMT-0700 (PDT) }
/Users/isaacs/Music/Bjo�rk/Medu�lla
false

$ ../node-v0.10/node b.js
[ '.DS_Store',
  '01 Pleasure Is All Mine (Feat. Icelandic Choir, Mike Patton, Tagaq).mp3',
  '02 Show Me Forgiveness.mp3',
  '03 Where Is the Line (Feat. Gregory Purnhagen, Icelandic Choir, Mike Patton).mp3',
  '04 Vökuró (Feat. Icelandic Choir).mp3',
  '05 Öll Birtan.mp3',
  '06 Who Is It (Carry My Joy on the Left, Carry My Pain on the Right) (Feat. Tagaq).mp3',
  '07 Submarine (Feat. Robert Wyatt).mp3',
  '08 Desired Constellation (Feat. Icelandic Choir).mp3',
  '09 Oceania (Feat. London Choir).mp3',
  '10 Sonnets_Unrealities XI (Feat. Icelandic Choir).mp3',
  '11 Ancestors (Feat. Tagaq).mp3',
  '12 Mouth\'s Cradle (Feat. Icelandic Choir, Tagaq).mp3',
  '13 Midvikudags.mp3',
  '14 Triumph of a Heart.mp3' ]
{ dev: 16777218,
  mode: 33261,
  nlink: 1,
  uid: 24561,
  gid: 100,
  rdev: 0,
  blksize: 4096,
  ino: 964406,
  size: 2246091,
  blocks: 4392,
  atime: Thu Aug 08 2013 16:50:45 GMT-0700 (PDT),
  mtime: Fri May 31 2013 17:01:20 GMT-0700 (PDT),
  ctime: Mon Jul 01 2013 17:23:09 GMT-0700 (PDT) }
/Users/isaacs/Music/Björk/Medúlla
true

@isaacs
Copy link
Author

isaacs commented Aug 9, 2013

Here's what ls does:

$ ls /Users/isaacs/Music/Björk/Medúlla
01 Pleasure Is All Mine (Feat. Icelandic Choir, Mike Patton, Tagaq).mp3
02 Show Me Forgiveness.mp3
03 Where Is the Line (Feat. Gregory Purnhagen, Icelandic Choir, Mike Patton).mp3
04 Vökuró (Feat. Icelandic Choir).mp3
05 Öll Birtan.mp3
06 Who Is It (Carry My Joy on the Left, Carry My Pain on the Right) (Feat. Tagaq).mp3
07 Submarine (Feat. Robert Wyatt).mp3
08 Desired Constellation (Feat. Icelandic Choir).mp3
09 Oceania (Feat. London Choir).mp3
10 Sonnets_Unrealities XI (Feat. Icelandic Choir).mp3
11 Ancestors (Feat. Tagaq).mp3
12 Mouth's Cradle (Feat. Icelandic Choir, Tagaq).mp3
13 Midvikudags.mp3
14 Triumph of a Heart.mp3

Using the latin1 chars:

$ ls /Users/isaacs/Music/Bjo�rk/Medu�lla
ls: /Users/isaacs/Music/Bjo�rk/Medu�lla: No such file or directory

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment