Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 463 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 463 Bytes

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