用法:
joinpath(parts::AbstractString...) -> String
joinpath(parts::Vector{AbstractString}) -> String
joinpath(parts::Tuple{AbstractString}) -> String
将路径组件加入完整路径。如果某个参数是绝对路径或(在 Windows 上)具有与为连接先前路径计算的驱动器不匹配的驱动器规范,则删除先前的组件。
注意在 Windows 上,因为每个驱动器都有一个当前目录,joinpath("c:", "foo")
表示相对于驱动器 "c:" 上的当前目录的路径,因此这等于 "c:foo",而不是 "c:\foo"。此外,joinpath
将此视为非绝对路径并忽略驱动器号大小写,因此 joinpath("C:\A","c:b") = "C:\A\b"
。
例子
julia> joinpath("/home/myuser", "example.jl")
"/home/myuser/example.jl"
julia> joinpath(["/home/myuser", "example.jl"])
"/home/myuser/example.jl"
相关用法
- Julia Filesystem.mkpath用法及代码示例
- Julia Filesystem.isfile用法及代码示例
- Julia Filesystem.rm用法及代码示例
- Julia Filesystem.touch用法及代码示例
- Julia Filesystem.isabspath用法及代码示例
- Julia Filesystem.dirname用法及代码示例
- Julia Filesystem.isdirpath用法及代码示例
- Julia Filesystem.normpath用法及代码示例
- Julia Filesystem.splitdir用法及代码示例
- Julia Filesystem.walkdir用法及代码示例
- Julia Filesystem.mkdir用法及代码示例
- Julia Filesystem.splitext用法及代码示例
- Julia Filesystem.cd方法用法及代码示例
- Julia Filesystem.isdir用法及代码示例
- Julia Filesystem.splitpath用法及代码示例
- Julia Filesystem.readdir用法及代码示例
- Julia Filesystem.mv用法及代码示例
- Julia Filesystem.basename用法及代码示例
- Julia Filesystem.pwd用法及代码示例
- Julia FastMath.@fastmath用法及代码示例
- Julia splice!用法及代码示例
- Julia @cfunction用法及代码示例
- Julia LibGit2.count用法及代码示例
- Julia LinearAlgebra.BLAS.dot用法及代码示例
- Julia break用法及代码示例
注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.Filesystem.joinpath — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。