-
Notifications
You must be signed in to change notification settings - Fork 204
Path separator handling on Windows #439
Comments
Per APPNOTE:
|
Version 1.1.1 will undeprecate |
@mistydemeo Could you please confirm that version 1.1.1 works for you, and then close this issue? I can't do so myself because I'm still waiting on @Plecra to add me as a repo admin. |
Oh, sure! What's the situation with the transfer of ownership? I was surprised to see crates.io updated to point at a new git repo without much comment, or a note in this repo. |
That note is coming in #447. @Plecra made me a co-owner of the crate and a member of the |
It looks like the ZIP format expects to always get
/
as path separators, so passing in Windows paths without normalization produces some broken/unexpected ZIP files. It looks like in #103 this was fixed by addingstart_file_from_path
andadd_directory_from_path
, but they were deprecated without replacement in #182. Is the recommended approach for users to normalize all paths to Unix file separators before passing the filenames in towrite_file
oradd_directory
?The text was updated successfully, but these errors were encountered: