From d3c4b447c3d882a77282e32d9e12d7c3d4f034a2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 18 Jul 2020 22:30:58 +0200 Subject: Existence verification --- src/util/files.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/util/files.ts') diff --git a/src/util/files.ts b/src/util/files.ts index e516258..49c5ebb 100644 --- a/src/util/files.ts +++ b/src/util/files.ts @@ -1,5 +1,4 @@ -import { ensureDirSync } from "https://deno.land/std/fs/mod.ts"; -import { walk } from "https://deno.land/std/fs/mod.ts"; +import { walk, ensureDirSync, existsSync } from "https://deno.land/std/fs/mod.ts"; const TEMP_USER_ID = 42; // TODO: FIX @@ -23,7 +22,8 @@ export const getFiles = async (path: string) => { createUserDirectory(TEMP_USER_ID); const dataPath: string = cleanPath(newPath); - console.log(dataPath); + + if (!existsSync(dataPath)) return []; const files = []; for await (const entry of walk(dataPath)) { -- cgit v1.2.3