Slight path problems

This commit is contained in:
Remy Moll 2020-12-10 11:25:38 +01:00
parent 60cba691ca
commit bfd087a0a6

View File

@ -78,6 +78,7 @@ class Variables():
if not os.path.exists(path):
return "File does not exist"
file = os.open(path,"r")
print(os.getcwd())
content = os.read(file)
os.close(file)
return content