當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Julia Filesystem.rm用法及代碼示例


用法:

rm(path::AbstractString; force::Bool=false, recursive::Bool=false)

刪除給定路徑的文件、鏈接或空目錄。如果 force=true 被傳遞,不存在的路徑不會被視為錯誤。如果 recursive=true 被傳遞並且路徑是目錄,則遞歸刪除所有內容。

例子

julia> mkpath("my/test/dir");

julia> rm("my", recursive=true)

julia> rm("this_file_does_not_exist", force=true)

julia> rm("this_file_does_not_exist")
ERROR: IOError: unlink("this_file_does_not_exist"): no such file or directory (ENOENT)
Stacktrace:
[...]

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Base.Filesystem.rm — Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。