3
我複製一個像這樣的文件:如何在Ruby中複製文件時發現錯誤?
require 'fileutils'
FileUtils.copy(source_file, dest_file)
我想知道,如果這個操作成功,如果沒有,究竟是什麼錯誤。
我在哪裏可以找到可引發的異常?
我複製一個像這樣的文件:如何在Ruby中複製文件時發現錯誤?
require 'fileutils'
FileUtils.copy(source_file, dest_file)
我想知道,如果這個操作成功,如果沒有,究竟是什麼錯誤。
我在哪裏可以找到可引發的異常?
因爲它是not documented,您必須檢查來源。