Skip to content

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

Notifications You must be signed in to change notification settings

biscofil/file_tree_to_sqlite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks