我有3个文件夹
Folder A (Landing Folder)
Folder B (Deletion Folder)
Folder C (Transfer to AWS Folder)
我已经编写了一些 python 代码,以便在进行一些数据转换后将文件从登陆文件夹移动到登陆文件夹 - 我需要为文件制作一个决策树:
Check each filename in folder A to see if it exists in the database
if the file exists already:
move the file to Folder B
Else
Insert the file name into the Database & move the file to Folder C for transfer to AWS
我在 python 中测试并运行了 SQL 语句,但我不确定如何将文件移动到它们各自的文件夹。
我假设我需要一些类似使用 shutil.move 到文件夹 B 或 C 的方法,具体取决于结果,但不能 100% 确定到达那里的语法。
任何帮助表示赞赏。
慕盖茨4494581
相关分类