summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/fstream/examples/symlink-write.js
blob: 657375b9886723570b07ea435192336af09cd3f4 (plain)
1
2
3
4
5
6
7
8
9
var fstream = require("../fstream.js")

fstream
  .Writer({ path: "path/to/symlink"
          , linkpath: "./file"
          , isSymbolicLink: true
          , mode: "0755" // octal strings supported
          })
  .end()