fineconey 发表于 2022-8-8 15:44:54

把A文件夹下的文件,放在b文件夹下的问题

需求:现在【1】文件夹下有无数个文件,现在想把他们以150个为一组,放到【2】文件夹下。现在每次运行都出错,请大佬指点

update:现在已知是‘str(num)’的问题,不好解决。

代码如下

import os
import shutil

n=0
m=1
allfiles=[]
path=r'e:\1'
path2=r'e:\2'
def mkdir(name):
    os.chdir(path2)
    if not os.path.exists(name):
      os.mkdir(name)

for root,dirs,files in os.walk(path):
    for file in files:
      allfiles.append(os.path.join(root,file))
      n+=1

num=range(len(allfiles))
for num,file in zip(num,allfiles):
    if num%150==0:
      mkdir(str(num))
      print(num,file)
    shutil.move(file,os.path.join(path2,str(num),os.path.basename(file)))


出错的信息如下:


0 e:\1\0\9015.gif
Traceback (most recent call last):
File "D:\Python39\lib\shutil.py", line 815, in move
    os.rename(src, real_dst)
FileNotFoundError: 系统找不到指定的路径。: 'e:\\1\\0\\9016.gif' -> 'e:\\2\\1\\9016.gif'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "E:\Python_PC\删除.py", line 24, in <module>
    shutil.move(file,os.path.join(path2,str(num),os.path.basename(file)))
File "D:\Python39\lib\shutil.py", line 835, in move
    copy_function(src, real_dst)
File "D:\Python39\lib\shutil.py", line 444, in copy2
    copyfile(src, dst, follow_symlinks=follow_symlinks)
File "D:\Python39\lib\shutil.py", line 266, in copyfile
    with open(dst, 'wb') as fdst:
FileNotFoundError: No such file or directory: 'e:\\2\\1\\9016.gif'

wp231957 发表于 2022-8-8 16:19:21

别人没你的环境,代码没法调试啊
不如说说你的详细需求,别人重写一下,你可以参考一下

z5560636 发表于 2022-8-8 16:22:16

num=range(len(allfiles))
for num,file in zip(num,allfiles):
    if num%150==0:
      mkdir(str(num))
      print(num,file)

没看错的话你的num 是不会变动的,使用你不会触发 mkdir() 去创建文件

在说说创建文件这里:
def mkdir(name):
    os.chdir(path2)
    if not os.path.exists(name):
      os.mkdir(name)

我记得这个创建文件和创建文件夹是要分开来弄的。

所以 BUG 还很多,你可以先试试。

fineconey 发表于 2022-8-8 16:28:23

wp231957 发表于 2022-8-8 16:19
别人没你的环境,代码没法调试啊
不如说说你的详细需求,别人重写一下,你可以参考一下

谢谢,需求是,将一个文件夹下的所有文件,按照150个为一组放在另一个文件夹下。比如A文件夹下有100个文件,要求放在B文件夹下的文件夹里,第一个文件夹放(0---149)个文件,第二个文件夹放(150---299)个文件,以此类推。

hrpzcf 发表于 2022-8-8 16:47:49

本帖最后由 hrpzcf 于 2022-8-8 16:51 编辑

因为num是随着每个文件一直增加的,而你最后一句使用num合成目的地路径,遍历到第二个文件的时候num是1,而这时候文件夹1并没有创建(你是每隔150个文件创建一个文件夹),所以报错了。
import os
import shutil

n = 0
m = 1
allfiles = []
path = r"e:\1"
path2 = r"e:\2"


def mkdir(name):
    os.chdir(path2)
    if not os.path.exists(name):
      os.mkdir(name)


for root, dirs, files in os.walk(path):
    for file in files:
      allfiles.append(os.path.join(root, file))
      n += 1

dirindex = -1
num = range(len(allfiles))
for num, file in zip(num, allfiles):
    if num % 150 == 0:
      dirindex += 1
      mkdir(str(dirindex))
      print(num, file)
    shutil.move(file, os.path.join(path2, str(dirindex), os.path.basename(file)))

fineconey 发表于 2022-8-8 16:59:00

hrpzcf 发表于 2022-8-8 16:47
因为num是随着每个文件一直增加的,而你最后一句使用num合成目的地路径,遍历到第二个文件的时候num是1,而 ...

感谢,谢谢提供思路,
页: [1]
查看完整版本: 把A文件夹下的文件,放在b文件夹下的问题