求助!!各位电脑大神,python批量将文件放到不同的文件夹中

求助!!各位电脑大神,python批量将文件放到不同的文件夹中,第1张

import os

import shutil

path_file = r'C:\Users\knife\Desktop\test'

file_list = os.listdir(path_file)

for i,each in enumerate(file_list):

  if i % 20 ==0:

     陵粗 fold_new = os.path.join(path_file,str(i // 20))

     尺亏镇 os.makedirs(fold_new)

 空乱 shutil.move(os.path.join(path_file,each),fold_new)

使用 from ...  import ... 可以导入其它文件夹中模块,举个例子,在 main.py 模块中调用 在其它文件夹漏谨耐中的 test.py, test2.py 模块,test.py 在utils文件夹中, test2.py 在utils\sub 文件夹中,代码如下:

main.py

#coding=utf-8

# 使用 from ...import ... 导入test,test2模块

from utils import test

from utils.sub import test2

test.hello()

test2.hello()

test.py 文件,在 utils 文件夹下

#coding=utf-8

def hello():

    print('Hello, Greetings from', __name__)

test2.py 文件,在 utils\sub 文件夹下

#coding=utf-8

def hello():

    返春print('Hello, Greetings 晌樱from', __name__)

运行结果:


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/8181874.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-14
下一篇 2023-04-14

发表评论

登录后才能评论

评论列表(0条)

保存