How to delete all contents of a folder with Ruby-Rails?

前端 未结 3 1074
长发绾君心
长发绾君心 2021-02-02 05:09

I have a public/cache folder which has files and folders. How can I completely empty that folder using a rake task?

3条回答
  •  不思量自难忘°
    2021-02-02 05:37

    You can run arbitrary commands using backticks like so:

    `rm -fr public/cache/*`
    

    This may be more platform-dependent than what you want, but it opens up a lot of possibilities.

提交回复
热议问题