คำตอบนี้เข้ากันได้กับทุกรุ่นตั้งแต่ Python-2.5 เมื่อคำสำคัญwith
ได้รับการเผยแพร่
1. สร้างไฟล์หากไม่มีอยู่ + ตั้งเวลาปัจจุบัน
(เหมือนกับคำสั่งtouch
)
import os
fname = 'directory/filename.txt'
with open(fname, 'a'): # Create file if does not exist
os.utime(fname, None) # Set access/modified times to now
# May raise OSError if file does not exist
รุ่นที่แข็งแกร่งกว่านี้:
import os
with open(fname, 'a'):
try: # Whatever if file was already existing
os.utime(fname, None) # => Set current time anyway
except OSError:
pass # File deleted between open() and os.utime() calls
2. เพียงสร้างไฟล์หากไม่มีอยู่
(ไม่อัปเดตเวลา)
with open(fname, 'a'): # Create file if does not exist
pass
3. เพียงอัปเดตการเข้าถึงไฟล์ / แก้ไขครั้ง
(ไม่สร้างไฟล์หากไม่มีอยู่)
import os
try:
os.utime(fname, None) # Set access/modified times to now
except OSError:
pass # File does not exist (or no permission)
การใช้os.path.exists()
ไม่ทำให้โค้ดง่ายขึ้น:
from __future__ import (absolute_import, division, print_function)
import os
if os.path.exists(fname):
try:
os.utime(fname, None) # Set access/modified times to now
except OSError:
pass # File deleted between exists() and utime() calls
# (or no permission)
โบนัส:อัปเดตเวลาของไฟล์ทั้งหมดในไดเรกทอรี
from __future__ import (absolute_import, division, print_function)
import os
number_of_files = 0
# Current directory which is "walked through"
# | Directories in root
# | | Files in root Working directory
# | | | |
for root, _, filenames in os.walk('.'):
for fname in filenames:
pathname = os.path.join(root, fname)
try:
os.utime(pathname, None) # Set access/modified times to now
number_of_files += 1
except OSError as why:
print('Cannot change time of %r because %r', pathname, why)
print('Changed time of %i files', number_of_files)