# -*- coding: utf-8 -*-
# @Author : LEHOSO
# @FileName: Test.py
# @Time : 2021/11/4 00:19
# coding=utf-8
import os
dir = 'D:\\xxx\\xxx'#需要读取的路径
file = os.listdir(dir)
fopen = open(r'书名.txt', 'w', encoding="utf-8")#写入到当前目录,并设置为utf-8字符
for b in file:
string = b + '\n' #每输出一个进行换行 "\n"为转义字符
line = string.replace(" ", "").replace(".pdf", "") + "\t" #拿到文件名进行数据清洗
fopen.write(line)#写入到书名.txt文本内
print(len(b)) #输出有多少文件
fopen.close()
相关文章
- 10-27Python3 元组
- 10-27python基本数据类型之集合及其内置方法
- 10-27python学习-异常处理
- 10-27python 异常处理,约束
- 10-27Python之闭包
- 10-27Python之系列函数(二)
- 10-27【Python】闭包和装饰器
- 10-27(一)Python入门-5函数:10nonlocal-global-LEGB规则
- 10-27第五章 python的函数(9):闭包
- 10-27Python中的类,方法和多态