ocamlfuse
ocamlfuse copied to clipboard
Missing fuse_file_info parameter in fopen ?
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