- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕捕获
- PhantomJS - 页面自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 快速指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomJS - makeTree
makeTree 方法创建形成最终目录所需的所有文件夹。如果创建成功,则返回 true,否则返回 false。如果目录已存在,则返回 true。
语法
其语法如下 −
fs.makeTree(path);
示例
以下示例展示了如何使用 makeTree 方法 −
var fs = require('fs'); var system = require('system'); var path = system.args[1]; fs.makeTree(path); console.log("Checking to see if the maketree has converted into directory : " +fs.isDirectory(path)); console.log("Listing the contents from the path given"); var a = path.split("/"); var list = fs.list(a[0]+"/"+a[1]+"/"+a[2]+"/"+a[3]); console.log(JSON.stringify(list)); phantom.exit();
以上程序生成以下输出。
Checking to see if the maketree has converted into directory : true Listing the contents from the path given [".","..","file.txt"]
phantomjs_file_system_module_methods.htm
广告