|
@@ -2,6 +2,11 @@
|
2
|
2
|
|
3
|
3
|
#2020-02 fp@bbw
|
4
|
4
|
|
|
5
|
+# Dieses Programm sucht alle Pruefungen und Pruefungsfragen durch
|
|
6
|
+# und erstellt den Index: Welche Pruefungsfrage in welcher Pruefung vorkommt.
|
|
7
|
+# Die Pruefungsfragen werden nach Kapitel sortiert und es wird eine LaTeX-Datei
|
|
8
|
+# erstellt.
|
|
9
|
+
|
5
|
10
|
import os; # Opreating System
|
6
|
11
|
import re;
|
7
|
12
|
|
|
@@ -13,6 +18,7 @@ def print_tex_directory_contents(sPath):
|
13
|
18
|
tempListe=[];
|
14
|
19
|
return print_tex_directory_contents_recursive(sPath);
|
15
|
20
|
|
|
21
|
+
|
16
|
22
|
def print_tex_directory_contents_recursive(sPath):
|
17
|
23
|
for sChild in os.listdir(sPath):
|
18
|
24
|
sChildPath = os.path.join(sPath,sChild);
|