在 Python 中,可以使用 os
模塊來(lái)操作文件路徑。以下是一些常用的操作文件路徑的方法:
import os
current_dir = os.getcwd()
print(current_dir)
import os
file_path = os.path.abspath('file.txt')
print(file_path)
import os
path = os.path.join('dir1', 'dir2', 'file.txt')
print(path)
import os
if os.path.exists('file.txt'):
print('File exists')
else:
print('File does not exist')
import os
file_name = os.path.basename('path/to/file.txt')
file_extension = os.path.splitext(file_name)[1]
print(file_name, file_extension)
這些是一些常用的操作文件路徑的方法,可以根據(jù)具體需求進(jìn)行調(diào)整和擴(kuò)展。