-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gp issues #319
Comments
|
The Lines 29 to 52 in 8bf9a23
dir.create(tmp <- tempfile())
dir.create(file.path(tmp, "mydir"))
cat("first file", file = file.path(tmp, "mydir", "file1"))
cat("second file", file = file.path(tmp, "mydir", "file2"))
zipfile <- tempfile(fileext = ".zip")
zip::zip(zipfile, files = list.files(file.path(tmp, "mydir")), root = file.path(tmp, "mydir"))
zip::zip_list(zipfile)
#> filename compressed_size uncompressed_size timestamp permissions
#> 1 file1 15 10 2023-09-04 11:41:24 664
#> 2 file2 16 11 2023-09-04 11:41:24 664
#> crc32 offset
#> 1 00effe3a 0
#> 2 735af9a0 66 Created on 2023-09-04 with reprex v2.0.2 |
|
This was referenced Jul 10, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(We can ignore the long line)
The text was updated successfully, but these errors were encountered: