You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ran into this issue on Windows 11, attempting to unzip an archive with descendent files having names that include single quotes.
An example directory structure:
problematic-filenames.zip
/l'esprit du corps.png
After installing, but prior to running library(zip),
zip::unzip("problematic-filenames.zip")
Panics and exits with error code 1, R_ZIP_EOPEN.
After running library(zip), identical calls produced the desired result in current and subsequent sessions, even after reinstalling the zip package.
I don't know how to reproduce the error, as I don't know how to undo the side-effect(s) of library(zip), but I do know that the default zip tool in windows 11 will panic when asked to zip folders with files whose paths contain single quotes.
The problem with this difference is that, when r-lib/zip is imported into another package as a dependency, users of the dependent package on Windows may experience unforeseen errors if they haven't called library(zip), which seems bad.
The text was updated successfully, but these errors were encountered:
Ran into this issue on Windows 11, attempting to unzip an archive with descendent files having names that include single quotes.
An example directory structure:
After installing, but prior to running
library(zip)
,Panics and exits with error code 1,
R_ZIP_EOPEN
.After running
library(zip)
, identical calls produced the desired result in current and subsequent sessions, even after reinstalling the zip package.I don't know how to reproduce the error, as I don't know how to undo the side-effect(s) of library(zip), but I do know that the default zip tool in windows 11 will panic when asked to zip folders with files whose paths contain single quotes.
The problem with this difference is that, when r-lib/zip is imported into another package as a dependency, users of the dependent package on Windows may experience unforeseen errors if they haven't called
library(zip)
, which seems bad.The text was updated successfully, but these errors were encountered: