Displaying 1 result from an estimated 1 matches for "witharchivecom".
2018 Jul 04
1
unexpected behavior of unzip with list=T and unzip=/usr/bin/unzip
...er
## More problematic cases
print(unzip("fileNameWithSpaces.zip",list=TRUE))
print(unzip("fileNameWithSpaces.zip",list=TRUE,unzip="/usr/bin/unzip"))
## read.table is used to parse output of unzip -l, and gets
## confused by extra spaces
print(unzip("withArchiveComment.zip",list=TRUE))
print(unzip("withArchiveComment.zip",list=TRUE,unzip="/usr/bin/unzip"))
## produces an error
print(unzip("entryComments.zip",list=TRUE))
print(unzip("entryComments.zip",list=TRUE,unzip="/usr/bin/unzip"))
## pro...