(filePath: string, content: string)
| 85 | } |
| 86 | |
| 87 | appendToFile(filePath: string, content: string): FileSystem { |
| 88 | fs.appendFileSync(filePath, content) |
| 89 | return this |
| 90 | } |
| 91 | |
| 92 | writeFile(destFilePath: string, content: string, log = true): FileSystem { |
| 93 | if(log) console.log('Writing File: ' + destFilePath) |