Skip to content
Snippets Groups Projects
remove.R 266 B
# This removes all the .xml files to free up space on the computer
removeFiles<- function(xmls){
  for (i in 1:length(xmls)){
    fileLocation= paste0(Dir,"design_point_", i ,".xml")  
    file.remove(fileLocation)
  }
  print('All .xml removed from directory...')
}