If I open a file with O_CREAT | O_WRONLY and write to it. Does POSIX say 1) other apps can see the file in the folder (without fsync) and 2) be able to see what I wrote?
Same questions after I do close without an fsync.
Now finally will it once my program ends? I understand fsync will confirm my write is on disk but I don't need my file to be on disk, I need it to be visible to other processes