import os
import shutil
import datetime
now = datetime.datetime.now()
file_name = 'test.txt'
# test.txtというファイルがあれば、
# 日時をファイル名に含めたバックアップファイルをつくる
if os.path.exists(file_name):
shutil.copy(file_name, '{}.{}'.format(
file_name, now.strftime('%Y_%m_%d_%H_%M_%S')))
# test.txtという名前で中身がtestであるファイルをつくる
with open(file_name, 'w') as f:
f.write('test')
More than 5 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme