path.format(pathObject)
添加於:v0.11.15
參數
path.format()
方法從對象返回路徑字符串。這與
相反。path.parse()
向pathObject
提供屬性時,請記住在某些組合中一個屬性優先於另一個屬性:
- 如果提供了
pathObject.dir
,則忽略pathObject.root
- 如果存在
pathObject.base
,則忽略pathObject.ext
和pathObject.name
例如,在 POSIX 上:
// If `dir`, `root` and `base` are provided,
// `${dir}${path.sep}${base}`
// will be returned. `root` is ignored.
path.format({
root: '/ignored',
dir: '/home/user/dir',
base: 'file.txt'
});
// Returns: '/home/user/dir/file.txt'
// `root` will be used if `dir` is not specified.
// If only `root` is provided or `dir` is equal to `root` then the
// platform separator will not be included. `ext` will be ignored.
path.format({
root: '/',
base: 'file.txt',
ext: 'ignored'
});
// Returns: '/file.txt'
// `name` + `ext` will be used if `base` is not specified.
path.format({
root: '/',
name: 'file',
ext: '.txt'
});
// Returns: '/file.txt'
在 Windows 上:
path.format({
dir: 'C:\\path\\dir',
base: 'file.txt'
});
// Returns: 'C:\\path\\dir\\file.txt'
相關用法
- Node.js path.format()用法及代碼示例
- Node.js path.basename()用法及代碼示例
- Node.js path.resolve()用法及代碼示例
- Node.js path.delimiter用法及代碼示例
- Node.js path.dirname(path)用法及代碼示例
- Node.js path.extname(path)用法及代碼示例
- Node.js path.normalize()用法及代碼示例
- Node.js path.parse(path)用法及代碼示例
- Node.js path.toNamespacedPath()用法及代碼示例
- Node.js path.dirname()用法及代碼示例
- Node.js path.isAbsolute(path)用法及代碼示例
- Node.js path.isAbsolute()用法及代碼示例
- Node.js path.join()用法及代碼示例
- Node.js path.normalize(path)用法及代碼示例
- Node.js path.join([...paths])用法及代碼示例
- Node.js path.resolve([...paths])用法及代碼示例
- Node.js path.relative()用法及代碼示例
- Node.js path.parse()用法及代碼示例
- Node.js path.relative(from, to)用法及代碼示例
- Node.js path.sep用法及代碼示例
- Node.js path.basename(path[, ext])用法及代碼示例
- Node.js path.extname()用法及代碼示例
- Node.js process.stdin用法及代碼示例
- Node.js process.arch()用法及代碼示例
- Node.js process.nextTick(callback[, ...args])用法及代碼示例
注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 path.format(pathObject)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。