I already checked several question on SO. This questions is different because asks to delete several files based on paths stored in a vector.
I have a vector:
rds_files <- paste0("C://mypath//file", 1:10, ".rds")
Each element of the vector represent the path of a file I need to delete.
Can you suggest me one of the possible approaches to automatically delete all those files?