I am using the following code to remove all generated .json temp files in my project:
file.remove(list.files(pattern = ".json"))
Is there a more simple way to achieve it without nesting functions?
I am using the following code to remove all generated .json temp files in my project:
file.remove(list.files(pattern = ".json"))
Is there a more simple way to achieve it without nesting functions?