You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
295 B

var tar = require("../tar.js")
, fstream = require("fstream")
, fs = require("fs")
var dir_destination = fs.createWriteStream('dir.tar')
// This must be a "directory"
fstream.Reader({ path: __dirname, type: "Directory" })
.pipe(tar.Pack({ noProprietary: true }))
.pipe(dir_destination)