我已经完成了教程,但我远不是一个有成就的 python 黑客。
我正在尝试使用 MySQLdb 执行以下操作:
- 遍历目录中的文件列表
- 根据函数参数为这些文件生成一个新的文件名
- 插入具有新文件名的数据库记录
- 使用新文件名将文件移动到新目录。
我有项目 1,2 和 4 工作,但无法让数据库插入正常工作。没有错误,但表中没有插入任何内容。我可以通过命令提示符登录和访问数据库,我可以直接在表中插入一条记录。
我正在使用使用 easy_install 安装的 python 2.75、mySQL 5.6.13、windows 7 64bit 和 MySQL_python-1.2.4-py2.7-win32。
def moveFile(rPath, dPath, dbID):
import fnmatch
import os
import MySQLdb as mysql
import sys
conn = mysql.connect(host='localhost', user='*******', passwd='*******', db='*******')
pattern = '*.pdf'
inc = 0
for root, dirs, files in os.walk(rootPath):
for filename in fnmatch.filter(files, pattern):
dire = root.find(rootPath) + len(rootPath)
dest = destPath + root[dire:]
fname = dbID + "_" + str(inc) + ".pdf"
# print fname
# print os.path.join(root, filename), os.path.join(dest, fname)
# os.renames(os.path.join(root, filename), os.path.join(dest, fname))
x = conn.cursor()
x.execute("INSERT INTO documents(documentname) VALUES (fname)")
inc += 1
return 'Files Count: ', inc
我确信我需要在代码中的某个地方提交,但我的尝试没有产生错误,但也没有结果。
感谢您阅读我的问题,我会及时尝试所有建议。