Closed xinkule closed 4 years ago
yauzl does not treat .DS_Store
or any other files as "hidden"; that concept does not exist in zip files. If you'd like to skip the files, you can check for it in your code.
If you're getting an ENOENT, it's definitely not a bug in yauzl; i would check the stacktrace and find what call is causing that.
Hello there, I have a zip file on osx, somehow it may include some hidden files like
.DS_Store
, and in the unzip process the program will throwENOENT: no such file or directory, open xxx
error. Wondering how to resolve the issue or could I just skip this kind of file ? Thank you. Following is my code snippet.