unchained / src /utils /deleteFileIfExists.mts
barton
Duplicate from jbilcke-hf/VideoChain-API
53aa97a
raw
history blame contribute delete
309 Bytes
import { existsSync, promises as fs } from "node:fs"
export const deleteFileIfExists = async (filePath: string) => {
if (existsSync(filePath)) {
try {
await fs.unlink(filePath)
return true
} catch (err) {
console.log(`failed to delete file ${filePath}`)
}
}
return false
}