1
0
Fork 0
Obsidian 管理的个人笔记仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

667 B

这篇文章是 Working with file system paths on Node.js 学习过程中的个人总结和笔记,大部分内容实际来自于原文章,如果你对 Nodejs 中的文件系统 (path) 感兴趣,我更建议你直接去看原文章。

在下文中 path 会被翻译成 路径

  • 大多数路径相关的功能都在模块 node:path
  • 全局变量 process 拥有一些方法可以改变当前工作目录(current working directory)
  • node:os 模块拥有一些函数可以返回重要的目录路径

访问 node:path 模块的三种方法