自己怎么做彩票投注网站常德今日头条新闻
完成了文件自动分类的操作后,我们一起来复习下:
首先,获取文件夹中所有文件名称,用 os.path.join() 函数拼接出要移动到的目标地址。然后,使用 os.path.exists() 函数判断目标文件夹是否存在,不存在用 os.mkdir() 创建文件夹。再者,使用 os.path.isdir() 函数判断是否为文件夹。最后,当不是文件夹时,使用 shutil.move() 函数移动。 | |
# 使用import导入os模块
import os
# 使用import导入shutil模块
import shutil
# 将阿文的下载文件夹路径 /Users/yequ/Desktop 赋值给变量desktopPath
desktopPath = "/Users/yequ/Desktop"
# 使用os.listdir()函数获取该路径下所有的文件(夹),并赋值给变量allItems
allItems = os.listdir(desktopPath)
# 使用for循环遍历所有文件(夹)
for item in allItems:
# 获取文件后缀名
extension = os.path.splitext(item)[1].lower()
# 定义一个变量targetPath,用来表示准备移动到的文件夹路径
targetPath = ""
if extension in [".jpg", ".jpeg", ".gif", ".png", ".bmp"]:
# 使用os.path.join()函数拼接分类文件夹路径:图片文件
# 并赋值给变量targetPath
targetPath = os.path.join(desktopPath, "图片文件")
elif extension in [".avi", ".mp4", ".wmv", ".mov", ".flv"]:
# 使用os.path.join()函数拼接分类文件夹路径:视频文件
# 并赋值给变量targetPath
targetPath = os.path.join(desktopPath, "视频文件")
elif extension in [".wav", ".mp3", ".mid", ".ape", ".flac"]:
# 使用os.path.join()函数拼接分类文件夹路径:音频文件
targetPath = os.path.join(desktopPath, "音频文件")
elif extension in [".pdf"]:
# 使用os.path.join()函数拼接分类文件夹路径:PDF文件
targetPath = os.path.join(desktopPath, "PDF文件")
elif extension in [".docx", ".doc"]:
# 使用os.path.join()函数拼接分类文件夹路径:Word文件
targetPath = os.path.join(desktopPath, "Word文件")
elif extension in [".xlsx", ".xls"]:
# 使用os.path.join()函数拼接分类文件夹路径:Excel文件
targetPath = os.path.join(desktopPath, "Excel文件")
elif extension in [".pptx", ".ppt"]:
# 使用os.path.join()函数拼接分类文件夹路径:PPT文件
targetPath = os.path.join(desktopPath, "PPT文件")
else:
# 使用os.path.join()函数拼接分类文件夹路径:其他文件
targetPath = os.path.join(desktopPath, "其他文件")
# 判断当如果目标文件夹不存在
if not os.path.exists(targetPath):
# 使用os.mkdir()函数创建文件夹
os.mkdir(targetPath)
# 使用os.path.join()函数拼接desktopPath和文件名
# 并赋值给变量itemPath
itemPath = os.path.join(desktopPath, item)
# 判断当itemPath不是文件夹时。
if not os.path.isdir(itemPath):
# 使用shutil.move()函数移动文件到targetPath路径
shutil.move(itemPath, targetPath)