Hi all,
I have a shiny application where at one point there I need to create a copy of excel file uploaded and I am using below code for this. This is working fine when I launch the application locally? But the same application on Rsconnect does not create a copy of the file? Why is it so? Should I change anything at the backend of the server?
file.copy(file_to_upload$datapath, file.path(folder, "Filename"), overwrite = TRUE)