mirror of
https://github.com/TheCommsChannel/TC2-BBS-mesh.git
synced 2025-03-05 20:51:53 -08:00
11 lines
246 B
Python
11 lines
246 B
Python
|
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.")
|
||
|
|