From 494fc9d7d1f08e05e1ee196bd0746900343b51dd Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Mon, 16 Jan 2023 00:13:54 +0100 Subject: feat: Fully implemented text/file api, almost finished autodelete service --- src/Util.cs | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/Util.cs (limited to 'src/Util.cs') diff --git a/src/Util.cs b/src/Util.cs deleted file mode 100644 index 19a433a..0000000 --- a/src/Util.cs +++ /dev/null @@ -1,14 +0,0 @@ -namespace BlobBin; - -public static class Util -{ - public static string GetFilesDirectoryPath(bool createIfNotExists = false) { - var filesDirectoryPath = Path.Combine( - Directory.GetCurrentDirectory(), - "AppData", - "files" - ); - if (createIfNotExists) Directory.CreateDirectory(filesDirectoryPath); - return filesDirectoryPath; - } -} \ No newline at end of file -- cgit v1.3