Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

create folder in r

dir.create ("<C:/.../folder_name>") #include full file path

#To add files to the folder
file.create ("C:/.../folder_name/new_csv_file.csv")

#To delete files
unlink ("C:/.../folder_name/new_csv_file.csv") 
 
PREVIOUS NEXT
Tagged: #create #folder
ADD COMMENT
Topic
Name
8+9 =