Searched refs:backupFilePath (Results 1 – 2 of 2) sorted by relevance
48 backupFilePath?: string | null;100 readonly backupFilePath: string | null = null; property in TaskRunner138 if (!this.backupFilePath) {142 await fs.access(this.backupFilePath, fs.constants.R_OK);153 if (!this.backupFilePath || !(await this.backupExistsAsync())) {156 const backup = await JsonFile.readAsync<TasksRunnerBackup<BackupDataType>>(this.backupFilePath);185 if (!this.backupFilePath) {197 await fs.outputFile(this.backupFilePath, JSON.stringify(backup, null, 2));204 if (this.backupFilePath) {205 fs.removeSync(this.backupFilePath);
118 backupFilePath: BACKUP_PATH,