How to delete files added to RStudio cloud?

I accidentally saved a bunch of text elements as csv files within my cloud project. I can't seem to figure out how to delete them. I especially don't want to have to delete each one individually. Any ideas?

You can delete all the .csv files in your working directory with this command

unlink(x = "*.csv", force = TRUE)

Note: This is not related to RStudio Cloud per se, so I'm changing the category to General.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.