getFileSize 

Requires a Node.js runtime ('qsu/node')Calculates the size of the file at the given path.
Parameters
| Name | Type | Required | Default |
|---|---|---|---|
filePath | string | ● | – |
Returns
string
Examples
javascript
getFileSize('/home/user/test.txt'); // 300dart
getFileSize('/home/user/test.txt'); // 300python
getFileSize('/home/user/test.txt') # 300