biscofil / file_tree_to_sqlite

C++ program that reads the file structure into an sqlite database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

File tree to sqlite

C++ program that reads the file structure into an sqlite database

Example

Let's consider a folder / with two files a,b and a folder c containing d

id name size parent id
1 / NULL NULL
2 a 1000 1
3 b 3 1
4 c NULL 1
5 d 36 4

Usage:

cmake .
make

About

C++ program that reads the file structure into an sqlite database


Languages

Language:C++ 95.2%Language:CMake 4.8%