From d1cc59687455945f5f61337a25f6594797cb513d Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Fri, 1 Mar 2024 09:58:46 +0100 Subject: [PATCH] Delete a.py --- a.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 a.py diff --git a/a.py b/a.py deleted file mode 100644 index 86fc8970..00000000 --- a/a.py +++ /dev/null @@ -1,19 +0,0 @@ - -import os - -destination_config_dir = '/usr/local/RapidBackup/config/destinations' -destinacija = "/etc/passwd /etc/passwd" - -# Show file path -def delete_destination(): - file_path = os.path.join(destination_config_dir, f"{destinacija}.conf") - print(file_path) - - try: - with open(file_path, 'r') as file: - print(file.read()) - except FileNotFoundError: - print("nema") - - -delete_destination()