Is your feature request related to a problem? Please describe.
FileTrove will find artifacts that are not files nor directories, but maybe relevant and the information should not be lost, e.g. named pipes.
type = {named_pipe, socket, block_device, link, ...}.
and we can use
b block (buffered) special
c character (unbuffered) special
[d directory]
p named pipe (FIFO)
[f regular file]
l symbolic link [?]
s socket
D door (Solaris)
as type labels. These match mostly the string representations of file mode bits.
Is your feature request related to a problem? Please describe. FileTrove will find artifacts that are not files nor directories, but maybe relevant and the information should not be lost, e.g. named pipes.
The idea is to create a table with this schema
where
and we can use
as type labels. These match mostly the string representations of file mode bits.
See also: https://github.com/steffenfritz/FileTrove/issues/112#issuecomment-2470078853