createFile 

Requires a Node.js runtime ('qsu/node')Create a file of empty data. If the same file already exists, it is ignored.
Parameters
| Name | Type | Required | Default |
|---|---|---|---|
filePath | string | ● | – |
| File or directory path | |||
Returns
Promise::void
Examples
javascript
await createFile('/home/user/test.txt');dart
await createFile('/home/user/test.txt');python
createFile('/home/user/test.txt')