-
-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tar file is corrupted when using single File larger than 8 GB #102
Comments
@pratikkaneria were you ever able to resolve this or figure out an alternative to recover the data? I am encountering this as well. |
Any updates on this? Encountering the same problem. Did you find any workarounds or alternative packages that can handle bigger single files? |
Not yet |
I ended up writing the files to disk and using the command line tar instead, avoiding the problem entirely. |
fixed in latest |
`var _tar = require('tar-fs');
var fs = require('fs');
var myArgs = process.argv.slice(2);
_tar.pack(myArgs[0], {finish: ()=>{
console.log("done")
} }).pipe(fs.createWriteStream(myArgs[1]));`
I am using the simple tar pack method to create a tar , in my folder i have a file which is of size 14 GB , the tar is created successfully but it is corrupted.
The text was updated successfully, but these errors were encountered: