如何判断某个文件夹是否存在?
and某个文件是否存在?
2 回复
用文件系统,应该可以吧? 看一下fs的api
path.exists("/path", function(exists) { });
path.existsSync(p);
and某个文件是否存在?
用文件系统,应该可以吧? 看一下fs的api
path.exists("/path", function(exists) { });
path.existsSync(p);