summary refs log tree commit diff stats
path: root/classification/files.py
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
commit3e4c5a6261770bced301b5e74233e7866166ea5b (patch)
tree9379fddaba693ef8a045da06efee8529baa5f6f4 /classification/files.py
parente5634e2806195bee44407853c4bf8776f7abfa4f (diff)
downloademulator-bug-study-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz
emulator-bug-study-3e4c5a6261770bced301b5e74233e7866166ea5b.zip
clean up repository
Diffstat (limited to 'classification/files.py')
-rwxr-xr-xclassification/files.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/classification/files.py b/classification/files.py
deleted file mode 100755
index 65efda6f..00000000
--- a/classification/files.py
+++ /dev/null
@@ -1,16 +0,0 @@
-import os
-
-def list_files_recursive(path='.'):
-    result = []
-    for entry in os.listdir(path):
-        full_path = os.path.join(path, entry)
-        if os.path.isdir(full_path):
-            result = result + list_files_recursive(full_path)
-        else:
-            result.append(full_path)
-    return result
-
-if __name__ == "__main__":
-    directory_path = '../gitlab/issues_text'
-    arr = list_files_recursive(directory_path)
-    print(arr)