* Return true if file exist * @returns {boolean}
()
| 66 | * @returns {boolean} |
| 67 | */ |
| 68 | async exists(): Promise<boolean> { |
| 69 | return await invoke('file_exist', { filePath: this.fileName }); |
| 70 | } |
| 71 | /** |
| 72 | * Create file if it doesn't exist |
| 73 | * @returns {Promise<void>} |
no outgoing calls
no test coverage detected