Skip to content

Commit

Permalink
adding local zip path
Browse files Browse the repository at this point in the history
  • Loading branch information
collinschwantes committed Sep 9, 2024
1 parent cf08abe commit 9646f9d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/get_dropbox_val_logs.R
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ get_dropbox_val_logs <-

# unzip if zipped
if (stringr::str_detect(full_path_name, ".zip")) {
utils::unzip(zipfile = full_path_name,files = here::here(local_path))
local_zip_path <- make_zip_path(local_path)
utils::unzip(zipfile = local_zip_path,files = here::here(local_path))
}

if (stringr::str_detect(file_name, ".xls|.xlsx")) {
Expand Down

0 comments on commit 9646f9d

Please sign in to comment.