我有一个作为守护进程运行的 ruby 脚本。保存新记录后,我想删除缓存目录中的所有文件夹和文件。我试过下面的代码没有成功:
require 'fileutils'
@report.save
FileUtils.rm_rf("absolute_path/tmp/cache/.")
# also tried
# FileUtils.rm_rf("#{RAILS.root}/tmp/cache/.")
我有一个作为守护进程运行的 ruby 脚本。保存新记录后,我想删除缓存目录中的所有文件夹和文件。我试过下面的代码没有成功:
require 'fileutils'
@report.save
FileUtils.rm_rf("absolute_path/tmp/cache/.")
# also tried
# FileUtils.rm_rf("#{RAILS.root}/tmp/cache/.")