From 98e9efd7d947787747e9cdc9375cae5b1fc7b596 Mon Sep 17 00:00:00 2001 From: N00MKRAD Date: Tue, 11 May 2021 20:20:10 +0200 Subject: [PATCH] Delete symlink dir before creating new ones --- Code/IO/Symlinks.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Code/IO/Symlinks.cs b/Code/IO/Symlinks.cs index bfcbf24..95bd82d 100644 --- a/Code/IO/Symlinks.cs +++ b/Code/IO/Symlinks.cs @@ -51,6 +51,7 @@ namespace Flowframes.IO { try { + IOUtils.DeleteIfExists(linksDir); Directory.CreateDirectory(linksDir); Stopwatch sw = new Stopwatch(); sw.Restart();