灏天阁

NODEJS[13]:fs模块_路径

· Yin灏
// 相对路径
fs.writeFileSync("./index.html", "love");
fs.writeFileSync("index.html", "love");
fs.writeFileSync("../index.html", "love");
// 绝对路径
fs.writeFileSync("D:/index.html", "love");
fs.writeFileSync("/index.html", "love"); // 根目录下

相对路径的 Bug

// 相对路径的参照物:命令行的工作目录
fs.writeFileSync("./index.html", "love");

// 绝对路径
console.log(__dirname); // __dirname 是所在文件的所在目录的绝对路径,路径中不包含文件名自己,末尾没有 `/`
fs.writeFileSync(__dirname + "/index.html", "love");

- Book Lists -