Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 Node.js 代码从 Windows 迁移到 Ubuntu 12.04,运行代码时出现错误,提示“fs”没有方法“存在”。代码就像
var fs = require('fs'); fs.exists ...
我检查了 nodejs.org 的文档,没有发现任何关于不同平台上 API 差异的说明。我是否遗漏了在 Ubuntu 上配置 Node.js 的任何内容?
fs.exists在节点 0.7.1 中添加。因此,如果您在此之前使用节点,则无法使用该功能。检查您的节点版本node -v以确认这一点。
fs.exists
node -v