How to remove a directory in R?

前端 未结 4 1906
有刺的猬
有刺的猬 2021-02-06 20:15

After some research I found out that the following works:

unlink(\"mydir\")

and you have to use the recursive option in case you w

4条回答
  •  闹比i
    闹比i (楼主)
    2021-02-06 20:49

    Simply

    unlink("mydir") # will delete directory called 'mydir'
    

提交回复
热议问题