ocamlfuse icon indicating copy to clipboard operation
ocamlfuse copied to clipboard

Missing fuse_file_info parameter in fopen ?

Open Jo-Blade opened this issue 7 months ago • 0 comments

Hello, I absolutely need for my filesystem to set the direct_io boolean in the fuse_file_info struct to true because I stream data from internet and I can't know the size of the final file in advance.

According to fuse documentation, this structure should be a parameter of the (f)open callback function. But it's not the case in ocamlfuse ?

So how to enable "direct_io" in this case ? It's very important for me because otherwise I will have to fetch every entire file content before reading them making my network filesystem completely unusable

Thank you

Jo-Blade avatar Jul 27 '24 08:07 Jo-Blade