There should be some way to set only the modifcation time and not the access time with fs__utime. I'm not sure what the API should look like. For unix, we can set the nanosecond value to UTIME_OMIT. For windows:
If the application does not need to change this information, set this parameter either to NULL or to a pointer to a FILETIME structure that has both the dwLowDateTime and dwHighDateTime members set to 0.
https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-setfiletime
cc @cjihrig @bnoordhuis
There should be some way to set only the modifcation time and not the access time with
fs__utime. I'm not sure what the API should look like. For unix, we can set the nanosecond value toUTIME_OMIT. For windows:https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-setfiletime
cc @cjihrig @bnoordhuis