在Python中,您可以使用os
模块来操作路径。以下是一些常见的路径操作方法:
import os
current_dir = os.getcwd()
print(current_dir)
import os
path1 = '/path/to/dir'
path2 = 'file.txt'
full_path = os.path.join(path1, path2)
print(full_path)
import os
path = '/path/to/dir'
if os.path.exists(path):
print("Path exists")
else:
print("Path does not exist")
import os
new_dir = '/path/to/new/dir'
os.mkdir(new_dir)
import os
path = '/path/to/dir'
contents = os.listdir(path)
for item in contents:
print(item)
这些是一些常见的路径操作方法,您可以根据您的需求进一步扩展和使用。