在Python中,有幾種常見的路徑和文件操作的最佳實(shí)踐:
import os
path = os.path.join('path', 'to', 'file')
with open('file.txt', 'r') as file:
# 對文件進(jìn)行操作
try:
with open('file.txt', 'r') as file:
# 對文件進(jìn)行讀操作
except FileNotFoundError:
print('文件不存在')
except IOError:
print('文件讀取錯誤')
import os
if os.path.exists('file.txt'):
# 對文件進(jìn)行操作
else:
print('文件不存在')
import os
path = 'path/to/file'
if os.path.isdir(path):
print('路徑是目錄')
elif os.path.isfile(path):
print('路徑是文件')