From 4c843c50cfe28854a432d0fe7a5fd1c1b779b938 Mon Sep 17 00:00:00 2001 From: w33b Date: Wed, 1 Oct 2025 16:13:33 +0200 Subject: [PATCH] Add folders --- 0-Source/.gitignore | 2 ++ 1-Temp/.gitignore | 2 ++ 2-Out/.gitignore | 2 ++ Start.py | 2 ++ 4 files changed, 8 insertions(+) create mode 100644 0-Source/.gitignore create mode 100644 1-Temp/.gitignore create mode 100644 2-Out/.gitignore diff --git a/0-Source/.gitignore b/0-Source/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/0-Source/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/1-Temp/.gitignore b/1-Temp/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/1-Temp/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/2-Out/.gitignore b/2-Out/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/2-Out/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/Start.py b/Start.py index 8a3a828..55f9ba7 100644 --- a/Start.py +++ b/Start.py @@ -19,6 +19,8 @@ for filename in os.listdir('0-Source'): input_file = os.path.join('0-Source', filename) if not os.path.isfile(input_file): continue + if filename == '.gitignore': + continue # Parse File Name temp_name = re.sub(r'\[.*?\]|\(.*?\)', "", filename).rsplit('.', 1)[0].strip()