有没有一种方法可以根据两者中匹配的字符串将文件放入文件夹



我对python还很陌生,我将把它作为我的第二次体验来继续学习。我的第一个项目(使用熊猫进行数据分析(将比这一个更难,但这将是一个新的领域,我需要一些帮助才能开始,因为我甚至不知道在任何文档中搜索什么。

我在一个目录中有许多为电视节目命名的文件夹。我在另一个目录中有很多文件,多集的,其中几个节目的。一个问题是,当我下载时,每一集都存储在一个标题相同的文件夹中。到目前为止,我一直在手动组织文件,但现在已经到了自动化的地步(这是一个很好的学习练习(。有没有办法在"下载"文件夹中搜索包含字符串(如"Homeland"(的文件的文件夹,并将该文件(剧集(移动到另一个目录中名为"Homeland"的文件夹中?我还需要为每个文件/文件夹匹配多个字符串,比如"游戏"one_answers"权力"。将它们移动到目录中很容易,但获取匹配的字符串是我想要深入了解的地方。然后我的下一个目标是循环浏览"下载"中的每个文件,并将其分类到正确的电视节目文件夹中。

folders = 'list of folders in downloads'
#maybe I need to create a list here or a function that creates a list?
source_dir = "C:UsersDownloads"
destination_dir = "C:UsersTV Shows"
for folder_names in folders:
if folder_name contains destination_name:
# destination_name will be undefined but this is what i want
source_path = str(source_dir) + str(file_name) + str(.mp4)
destination_path = str(destination_dir) + str(file_name) + 
str(.mp4)
shutil.move(source_path, destination_path)
if not:
do nothing

它必须更改,因为有些变量会产生错误,而且语法不好,但这是我想要的总体想法。

如果您有许多文件和文件夹,则使用for-循环来处理它们。

您必须将文件名拆分为单词-split(' ')-,并使用for-循环分别检查文件夹名称中的每个单词,并计算文件夹名称中包含的单词。当计数为2或更多时,移动文件。

或多或少:

all_filenames = [
'Game of Throne part II.mp4',
'other file.mp4',
]
all_folders = [
'Game Throne',
'Other Files'
]
for filename in all_filenames:
words = filename.lower().split(' ')
moved = False
for folder in all_folders:
count = 0
for word in words:
if word in folder.lower():
count += 1
if count >= 2:
print('count:', count, '|', filename, '->', folder)
# TODO: move file
moved = True
break
if not moved:
print('not found folder for:', filename)
# TODO: you could move file to `Other Files`

编辑:版本,获取所有匹配的文件夹并要求用户选择正确的文件夹。

我没有测试它。它可能需要更多的代码来检查用户是否选择了正确的号码。并最终添加选项跳过它而不移动文件。

all_filenames = [
'Game of Throne part II.mp4',
'other file.mp4',
]
all_folders = [
'Game Throne',
'Other Files'
]
for filename in all_filenames:
words = filename.lower().split(' ')
matching = []

for folder in all_folders:
count = 0
for word in words:
if word in folder.lower():
count += 1
if count >= 2:
print('count:', count, '|', filename, '->', folder)
matching.append(folder)
#if not matching:
if len(matching) == 0:
print('not found folder for:', filename)
# TODO: you could move file to `Other Files`
elif len(matching) == 1:
print('move:', filename, '->', matching[0])
# TODO: move file to folder matching[0]
else:
for number, item in enumerate(matching):
print(number, item)
answer = int(input('choose number:'))
print('move:', filename, '->', matching[answer])
# TODO: move file to folder matching[answer]

相关内容

  • 没有找到相关文章