我没有看到 FileUtils 命令的任何返回值。
我想做类似的事情:
really=(gets.chomp=="y")
if really
success = FileUtils.rm_rf "./PROJECT_#{@name}" #does not work
end
puts "./PROJECT_#{@name} deleted" if success
我阅读了FileUtils 的文档,还阅读了“从 ruby FileUtils 获取执行的命令”,但我不知道如何使用答案。