- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 截屏
- PhantomJS - 网页自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 实用资源
- PhantomJS - 快速指南
- PhantomJS - 实用资源
- PhantomJS - 讨论
PhantomJS - 触屏
此方法创建空文件。
语法
其语法如下所示 -
var fs = require('fs'); fs.touch(path);
示例
以下示例显示了 touch 方法的工作原理。
命令 - phantomjs touch.js hello.txt
var fs = require('fs'); var system = require('system'); var path = system.args[1]; var md = fs.touch(path); console.log("file is present : "+fs.isFile(path)); phantom.exit();
结果:以下 输出。
file is present : true
phantomjs_file_system_module_methods.htm
广告