概要
Pythonで「ファイルの作成と削除」の動作を確認してみました。
以下のページを参考にしました。
実装
以下のファイルを作成しました。
sample1.py
import os
f = open('./test/user.txt', 'w')
f.close()
sample2.py
import os
os.remove('./test/user.txt')
以下のコマンドを実行しました。
$ mkdir test
$ python3 sample1.py
$ ls test/
user.txt
$ python3 sample2.py
$ ls test/
まとめ
何かの役に立てばと。