python盘符及路径获取:
参考:
https://pythonjishu.com/rpszkrzoctrpkgq/
https://blog.51cto.com/u_16213346/7272017
https://blog.csdn.net/Java_ZZZZZ/article/details/130846038
http://www.mobiletrain.org/about/BBS/142777.html
https://pythonjishu.com/python-os-25/
https://blog.csdn.net/m0_58987515/article/details/123843297
获取盘符列表:
response = os.popen("wmic logicaldisk get Caption")
return response.read().split()[1:]
获取当前文件路径:
current_dir = os.getcwd()
遍历当前目录下子文件:
file_names = []
for item in items:item_path = os.path.join(current_dir, item) # 构造文件或目录的绝对路径if os.path.isfile(item_path): # 判断是否为文件file_names.append(item_path)
文件和路径判断:
os.path.isfile(path)
os.path.isdir(path)