node path
2020-05-28 本文已影响0人
simplerandom
var path=require("path");
// 当前js文件的目录内的hello.txt文件
var n=path.join(__dirname,"hello.txt");
// 当前js文件的绝对路径
console.log(__filename);
var path=require("path");
// 当前js文件的目录内的hello.txt文件
var n=path.join(__dirname,"hello.txt");
// 当前js文件的绝对路径
console.log(__filename);