I'd like to identify files that are first-in first-out special file (named pipe) on Linux with dotnet
Here is a kind of file returned by ls:
$ ls -al /home/xxxxxx/.mkmkmmkk/sdfsdf.pipe
prw------- 1 xxxxxx xxxxxx 0 4 nov 2018 /home/xxxxxx/.mkmkmmkk/sdfsdf.pipe
this kind of file can be created with mkfifo someFileName
How can I retrieve the p attribute from dotnet without running an external process ?
Thanks
By using interop it's possible to identify if the files are FIFO:
Here is the supporting interops: