I need to atomically set the value of the file attribute in java. I found the method
Path Files.setAttribute(Path path, String attribute, Object value, LinkOption... options)
but the documentation is not specified that the value will be set atomically. Please tell me how to do it.
FileLock could be a solution: