mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-16 02:35:54 -07:00
Use fsp for promises
This commit is contained in:
parent
a5714ebf34
commit
e08aa2356d
10 changed files with 27 additions and 26 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { promises as fs } from 'fs';
|
||||
import { promises as fsp } from 'fs';
|
||||
|
||||
import { getFileSize } from './fileUtils';
|
||||
import { IpluginInputArgs } from './interfaces/interfaces';
|
||||
|
|
@ -48,7 +48,7 @@ const tryMove = async ({
|
|||
|
||||
let error = false;
|
||||
try {
|
||||
await fs.rename(sourcePath, destinationPath);
|
||||
await fsp.rename(sourcePath, destinationPath);
|
||||
} catch (err) {
|
||||
error = true;
|
||||
args.jobLog(`File move error: ${JSON.stringify(err)}`);
|
||||
|
|
@ -157,7 +157,7 @@ const tryNormalCopy = async ({
|
|||
|
||||
let error = false;
|
||||
try {
|
||||
await fs.copyFile(sourcePath, destinationPath);
|
||||
await fsp.copyFile(sourcePath, destinationPath);
|
||||
} catch (err) {
|
||||
error = true;
|
||||
args.jobLog(`File copy error: ${JSON.stringify(err)}`);
|
||||
|
|
@ -186,7 +186,7 @@ const cleanSourceFile = async ({
|
|||
}) => {
|
||||
try {
|
||||
args.jobLog(`Deleting source file ${sourcePath}`);
|
||||
await fs.unlink(sourcePath);
|
||||
await fsp.unlink(sourcePath);
|
||||
} catch (err) {
|
||||
args.jobLog(`Failed to delete source file ${sourcePath}: ${JSON.stringify(err)}`);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue