码迷,mamicode.com
首页 > 其他好文 > 详细

文件路径和模块路径

时间:2019-02-26 01:27:46      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:--   UNC   read   操作   txt   tostring   cti   str   当前目录   

<!--文件操作路径-->
<!--
在文件操作路径的相对路径中
./data/a.txt 相对于当前目录
data/a.txt 相对于当前目录
/data/a.txt 绝对路径,当前文件模块所处磁盘根目录
c:/xx/xxx... 绝对路径
fs.readFile(`./data/a.txt`,function(err,data){
if(err){
console.log(err)
return console.log(`读取失败`)
}
console.log(data.toString())
})
-->


<!--模块操作路径-->
<!--
//这里如果忽略了 . 则也是磁盘根目录
require(`/data/foo.js`)

//相对路径
require(`./data/foo.js`)

//模块加载的路径中的相对路径不能省略 ./

-->

文件路径和模块路径

标签:--   UNC   read   操作   txt   tostring   cti   str   当前目录   

原文地址:https://www.cnblogs.com/lujieting/p/10434670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!