11 lines
272 B
Python
11 lines
272 B
Python
def read_file(path):
|
|
with open(path, "r", encoding="utf-8") as f:
|
|
return f.read()
|
|
|
|
def write_file(path, content):
|
|
with open(path, "w", encoding="utf-8") as f:
|
|
f.write(content)
|
|
|
|
def cause_io_error():
|
|
raise IOError("Forced IO Error for testing")
|