join-paths
Combina rutas dadas como argumentos en una sola ruta.
Firma
join-paths(string1:string, string2:string, stringN:string) -> string |
Parámetros
Nombre | Tipo | Descripción |
---|---|---|
string1 | string | Indica un único paso de ruta que combinar. Todos los argumentos posteriores deben ir separados por comas. |
string2 | string | Véase punto anterior. |
stringN | string | Véase punto anterior. |
Ejemplos
En Windows estas expresiones devuelven "C:\tmp\test.txt":
join-paths('C:\tmp', 'test.txt') join-paths('C:\tmp\', 'test.txt') join-paths('C:\', 'tmp', 'test.txt') join-paths('C:\Users', '\tmp', 'test.txt') join-paths('D:\Data', 'C:\tmp', 'test.txt') |
En Linux y MacOS estas expresiones devuelven "/home/user/test.txt":
join-paths('/home/user', 'test.txt') join-paths('/var', '/home/user', 'test.txt') |