banboo-data / RBingAds

R API wrapper for the Bing Ads API
Other
2 stars 0 forks source link

CRAN policy: save data #12

Closed jburkhardt closed 5 years ago

jburkhardt commented 5 years ago

Please ensure that your functions do not modify (save or delete) the user's home filespace in your examples/vignettes/tests. That is not allow by CRAN policies. Please only write/save files if the user has specified a directory. In your examples/vignettes/tests you can write to tempdir(). E.g. you have

download.file(url = download_url, destfile = "tmp.zip", mode = 'wb', method ='auto')

Please download to file.path(tempdir(), "tmp.zip")