diff --git a/text.py b/text.py deleted file mode 100644 index f992c61..0000000 --- a/text.py +++ /dev/null @@ -1,10 +0,0 @@ -import os - -print("Current Working Directory:", os.getcwd()) -file_path = "./games/lost_forest.csv" - -if os.path.exists(file_path): - print("✅ File exists! Python can detect it.") -else: - print("❌ File does NOT exist according to Python.") -