文件按照名称自动归类
```importos
import shutil
def copyfile(source_path,target_path,target_path2):
print(target_path)
if not os.path.exists(target_path2):
# 如果目标路径不存在原文件夹的话就创建
os.makedirs(target_path2)
target_path3 = target_path + '-1'
ifos.path.exists(target_path) == True:
print(os.path.exists(target_path))
os.rename(target_path,target_path3)
shutil.move(source_path, target_path)
if os.path.exists(target_path) == False:
print(os.path.exists(target_path))
shutil.move(source_path, target_path)
def copyfiles():
#文件原始位置
LocalDir =
for djbh in os.listdir(LocalDir):
local_path = os.path.join(LocalDir, djbh)
print(djbh)
print(local_path)
year = djbh
monthday = djbh
#文件应存放位置上级目录
RemoteDir =
#文件应存放位置
RemoteDir2 =
copyfile(local_path, RemoteDir2,RemoteDir)
print('copy dir finished!')
copyfiles()
``` 这个要是能有演示的图片就更好了,功能也介绍不完整,建议补充一下 可以弱弱的问一句,这是什么代码吗? Dream漂移 发表于 2023-5-22 13:36
可以弱弱的问一句,这是什么代码吗?
很明显是Python啊 对吧 感谢分享 ytfty 发表于 2023-5-22 11:13
这个要是能有演示的图片就更好了,功能也介绍不完整,建议补充一下
没有研究界面哈哈以后有机会再研究研究
Dream漂移 发表于 2023-5-22 13:36
可以弱弱的问一句,这是什么代码吗?
python哦 Raohz520 发表于 2023-5-22 13:41
很明显是Python啊 对吧
嗯嗯是的呢
页:
[1]