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


Julia Filesystem.mv用法及代碼示例


用法:

mv(src::AbstractString, dst::AbstractString; force::Bool=false)

將文件、鏈接或目錄從 src 移動到 dstforce=true 將首先刪除現有的 dst 。返回 dst

例子

julia> write("hello.txt", "world");

julia> mv("hello.txt", "goodbye.txt")
"goodbye.txt"

julia> "hello.txt" in readdir()
false

julia> readline("goodbye.txt")
"world"

julia> write("hello.txt", "world2");

julia> mv("hello.txt", "goodbye.txt")
ERROR: ArgumentError: 'goodbye.txt' exists. `force=true` is required to remove 'goodbye.txt' before moving.
Stacktrace:
 [1] #checkfor_mv_cp_cptree#10(::Bool, ::Function, ::String, ::String, ::String) at ./file.jl:293
[...]

julia> mv("hello.txt", "goodbye.txt", force=true)
"goodbye.txt"

julia> rm("goodbye.txt");

相關用法


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