Registry / utility / tinydir

tinydir

JSON →
library1.2.6vcpkgunverified

Lightweight, portable and easy to integrate C directory and file reader.

vcpkg install tinydir
INSTALL
IMPORT
SIG · TINYDIR
T
tinydir
utilitycppv1.2.6
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

tinydir.h
#include <tinydir.h>

List files in the current directory using tinydir.

#include "tinydir.h" #include <stdio.h> int main() { tinydir_dir dir; tinydir_open(&dir, "."); while (dir.has_next) { tinydir_file file; tinydir_readfile(&dir, &file); printf("%s\n", file.name); tinydir_next(&dir); } tinydir_close(&dir); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.2.6latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources

No resource links recorded.

tinydir — pip install tinydir · libregistry