-
Notifications
You must be signed in to change notification settings - Fork 12
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
Shiny app zip files with no folder name #109
Labels
Comments
Solution is not zip::zip() but to use "extras = "-j"" to strip the path. |
Five ways to get a zip file so have to ensure each has the modified code.
|
put on hold |
https://stackoverflow.com/questions/51770621/zip-files-without-directory-name-in-r Tested "-j" and it worked.
|
leppott
added a commit
that referenced
this issue
Feb 23, 2021
* refactor: Shiny server, zip files add -j to strip folder names, Issue #109 * refactor: Add additional DO parameters to config, Issue #117 * refactor: Update other versions of config, Issue #117 * docs: Update README install directions * docs: README, trim lines to 80 characters * docs: Move planned updates from NEWS to README * refactor: Update Report_Config.rmd for new DO parameters, Issue #117 * refactor: Update Report_Config.rmd so sensor depth and water level are next to each other * refactor: Copy updated Report_Config.rmd to Shiny app, Issue #117 * refactor: Add additional DO parameters (n=3) to reformatHobo function , Issue #117
Did not work in practice. Had added full.names as a parameter. It was causing issues. Removed it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem? Please describe.
Zip files from Shiny app include "data" folder. Users confused that the files are part of the "data" process.
Describe the solution you'd like
Removed the "data" folder from the zip files generated by the Shiny app.
Describe alternatives you've considered
Using other folder name too messy for the Shiny app.
Additional context
Possibly use zip::zip() instead of utils::zip()
The text was updated successfully, but these errors were encountered: