@@ -248,16 +248,19 @@ function splitpath(p::String)
248
248
return out
249
249
end
250
250
251
- joinpath (path:: AbstractString ):: String = path
252
-
253
251
if Sys. iswindows ()
254
252
255
- function joinpath (path:: AbstractString , paths:: AbstractString... ):: String
256
- result_drive, result_path = splitdrive (path)
253
+ function joinpath (paths:: Union{Tuple, AbstractVector} ):: String
254
+ assertstring (x) = x isa AbstractString || throw (ArgumentError (" path component is not a string: $(repr (x)) " ))
255
+
256
+ isempty (paths) && return path_separator
257
+ assertstring (paths[1 ])
258
+ result_drive, result_path = splitdrive (paths[1 ])
257
259
258
- local p_drive, p_path
259
- for p in paths
260
- p_drive, p_path = splitdrive (p)
260
+ p_path = " "
261
+ for i in firstindex (paths)+ 1 : lastindex (paths)
262
+ assertstring (paths[i])
263
+ p_drive, p_path = splitdrive (paths[i])
261
264
262
265
if startswith (p_path, (' \\ ' , ' /' ))
263
266
# second path is absolute
293
296
294
297
else
295
298
296
- function joinpath (path:: AbstractString , paths:: AbstractString... ):: String
297
- for p in paths
299
+ function joinpath (paths:: Union{Tuple, AbstractVector} ):: String
300
+ assertstring (x) = x isa AbstractString || throw (ArgumentError (" path component is not a string: $(repr (x)) " ))
301
+
302
+ isempty (paths) && return path_separator
303
+ assertstring (paths[1 ])
304
+ path = paths[1 ]
305
+ for i in firstindex (paths)+ 1 : lastindex (paths)
306
+ p = paths[i]
307
+ assertstring (p)
298
308
if isabspath (p)
299
309
path = p
300
310
elseif isempty (path) || path[end ] == ' /'
308
318
309
319
end # os-test
310
320
321
+ """
322
+ joinpath(parts) -> String
323
+
324
+ Join collection of path components into a full path. If some argument is an absolute path or
325
+ (on Windows) has a drive specification that doesn't match the drive computed for
326
+ the join of the preceding paths, then prior components are dropped.
327
+
328
+ Note on Windows since there is a current directory for each drive, `joinpath("c:", "foo")`
329
+ represents a path relative to the current directory on drive "c:" so this is equal to "c:foo",
330
+ not "c:\\ foo". Furthermore, `joinpath` treats this as a non-absolute path and ignores the drive
331
+ letter casing, hence `joinpath("C:\\ A","c:b") = "C:\\ A\\ b"`.
332
+
333
+ # Examples
334
+ ```jldoctest
335
+ julia> joinpath(["/home/myuser", "example.jl"])
336
+ "/home/myuser/example.jl"
337
+
338
+ julia> joinpath(())
339
+ "$(path_separator) "
340
+ ```
341
+ """
342
+ joinpath
343
+
311
344
"""
312
345
joinpath(parts::AbstractString...) -> String
313
346
@@ -326,7 +359,8 @@ julia> joinpath("/home/myuser", "example.jl")
326
359
"/home/myuser/example.jl"
327
360
```
328
361
"""
329
- joinpath
362
+ joinpath (path:: AbstractString ):: String = path
363
+ joinpath (path:: AbstractString , paths:: AbstractString... ):: String = joinpath ((path, paths... ))
330
364
331
365
"""
332
366
normpath(path::AbstractString) -> String
0 commit comments