-
Notifications
You must be signed in to change notification settings - Fork 1
/
files_to_db.py
32 lines (22 loc) · 1011 Bytes
/
files_to_db.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import os
import sqlite3
def sqlite_insert(conn, table, row):
cols = ', '.join('"{}"'.format(col) for col in row.keys())
vals = ', '.join(':{}'.format(col) for col in row.keys())
sql = 'INSERT INTO "{0}" ({1}) VALUES ({2})'.format(table, cols, vals)
conn.cursor().execute(sql, row)
conn.commit()
# list = os.listdir("/run/user/1000/gvfs/smb-share:server=codex2,share=archivosdigitales")
bd = sqlite3.connect('dropbox.db')
bd.execute(""" CREATE TABLE IF NOT EXISTS archivos (
id integer PRIMARY KEY,
archivo text NOT NULL,
checksum text
); """)
for (path, directorios, archivos) in os.walk("/run/user/1000/gvfs/smb-share:server=codex2,share=archivosdigitales"):
print(path)
for a in archivos:
sqlite_insert(bd, 'archivos', {
'archivo': path+"/"+a})
bd.close()
print("Registro de archivos exitoso")