当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。