2023-08-22 11:15:46 -04:00
|
|
|
import os
|
2015-06-20 17:02:41 -04:00
|
|
|
|
2018-11-26 00:52:18 -05:00
|
|
|
if not hasattr(os, "remove"):
|
2015-06-20 17:02:41 -04:00
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2015-06-20 17:02:41 -04:00
|
|
|
|
2015-08-21 03:45:52 -04:00
|
|
|
# cleanup in case testfile exists
|
2015-06-20 17:02:41 -04:00
|
|
|
try:
|
2018-11-26 00:52:18 -05:00
|
|
|
os.remove("testfile")
|
2015-06-20 17:02:41 -04:00
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# Should create a file
|
|
|
|
f = open("testfile", "a")
|
|
|
|
f.write("foo")
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
f = open("testfile")
|
|
|
|
print(f.read())
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
f = open("testfile", "a")
|
|
|
|
f.write("bar")
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
f = open("testfile")
|
|
|
|
print(f.read())
|
|
|
|
f.close()
|
2015-08-21 03:45:52 -04:00
|
|
|
|
|
|
|
# cleanup
|
|
|
|
try:
|
2018-11-26 00:52:18 -05:00
|
|
|
os.remove("testfile")
|
2015-08-21 03:45:52 -04:00
|
|
|
except OSError:
|
|
|
|
pass
|