On 28/01/2026 04:22, DFS via Python-list wrote:
On 1/27/2026 4:02 PM, Lawrence D’Oliveiro wrote:
[snip]
Just some thoughts:
cSQL = " CREATE TABLE Files "
cSQL += " ( "
cSQL += " FileID INTEGER NOT NULL PRIMARY KEY, "
cSQL += " FolderID INTEGER REFERENCES Fold
On 1/27/2026 11:22 PM, DFS via Python-list wrote:
On 1/27/2026 4:02 PM, Lawrence D’Oliveiro wrote:
[snip]
Just some thoughts:
cSQL = " CREATE TABLE Files "
cSQL += " ( "
cSQL += " FileID INTEGER NOT NULL PRIMARY KEY, "
cSQL += " FolderID INTEGER REFERENCES
On 1/27/2026 4:02 PM, Lawrence D’Oliveiro wrote:
On Mon, 26 Jan 2026 13:28:24 -0500, DFS wrote:
Here's some Python code I wrote to capture file metadata (name,
location, date created, date modified, and size) in a SQLite
database.
I would consider this a waste of time. There are already stand
This looks like a very personal use case. I think that’s exactly the point of
why scripting languages like Python have become so popular: they let anyone
quickly and easily write a simple tool tailored to their own needs, improving
their workflow. Even if such tools don’t necessarily help other