import os
rootPath = r'D:\rssi'
for root, dirs, files in os.walk(rootPath):
for filePath in files:
filePath = os.path.join(root, filePath)
if filePath
Python遍历处理文件
最新推荐文章于 2023-06-21 00:15:00 发布
import os
rootPath = r'D:\rssi'
for root, dirs, files in os.walk(rootPath):
for filePath in files:
filePath = os.path.join(root, filePath)
if filePath