Skip to content

Commit 122091b

Browse files
grj001fengmk2
andauthored
fix: support windows directory detect (#106)
fix window file separator <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Bug Fixes** - Improved directory detection in zip files to handle both backslashes and forward slashes, ensuring better compatibility across different operating systems. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: fengmk2 <[email protected]>
1 parent 7043a9c commit 122091b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/zip/uncompress_stream.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ class ZipUncompressStream extends UncompressBaseStream {
9898
entry.fileName = iconv.decode(entry.fileName, this._zipFileNameEncoding);
9999
}
100100
}
101-
// directory file names end with '/'
102-
const type = /\/$/.test(entry.fileName) ? 'directory' : 'file';
101+
// directory file names end with '/' (for Linux and macOS) or '\' (for Windows)
102+
const type = /[\\\/]$/.test(entry.fileName) ? 'directory' : 'file';
103103
const name = entry.fileName = this[STRIP_NAME](entry.fileName, type);
104104

105105
const header = { name, type, yauzl: entry, mode };

0 commit comments

Comments
 (0)