0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

datetime と ファイル書き込み と バックアップ

Posted at
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')
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?