15 lines
328 B
Python
15 lines
328 B
Python
import os
|
|
import json
|
|
|
|
|
|
class FS:
|
|
def readJSON(path: str):
|
|
return json.loads((open(path)).read())
|
|
|
|
def writeFile(data, filePath, fileName):
|
|
file_to_open = filePath + fileName
|
|
|
|
f = open(file_to_open, 'w', encoding='utf-8',
|
|
errors='ignore')
|
|
f.write(data)
|
|
f.close()
|