[Solved] Recursive scan of folder tree C [closed]
[ad_1] You could take a look at Glib, there are some file utilities that can be helpful here. More specifically, you can use g_dir_open function on every file in a directory. If this function sets the GError**error pointer non-null, then you have tried to open a file, otherwise you’ve just parsed into a subdir… Your … Read more