Why can't I do a taskschedule when the output is overwriting a .csv in R?

25 Views Asked by At

I don't have admin rights but normally this is not an issue.

library(taskscheduleR)


#daily overwrite output
taskscheduler_create(taskname = "Overwrite", rscript = "C:/Folder1/Next Folder/Backup/FileScript.R", 
                     schedule = "DAILY", starttime = "08:00",startdate = format(Sys.Date(), "%m/%d/%Y"), modifier = 1)

The taskschedule code references a script that is just doing a write.csv output connected to a server on a daily basis.

0

There are 0 best solutions below