plz any buddy share demo program about file version control of any document and how can uniquely identify that document at the time of when we uploading.
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.attribute.BasicFileAttributes;
public class Main
{
public static void main(String[] args) throws Exception
{
BasicFileAttributes attr = null;
Path path = Paths.get("C:/tutorial/Java/JavaFX", "Topic.txt");
attr = Files.readAttributes(path, BasicFileAttributes.class);
System.out.println(attr.fileKey());
}
}