Is it possible the read the information/details of a shortcut on desktop with java? I mean the details like name, type, file size, path, creation date, changed date,...
Asked
Active
Viewed 839 times
1
-
1See [here](http://docs.oracle.com/javase/tutorial/essential/io/fileAttr.html). Give path of the desktop, iterate over all files, check if File is a regular file. If it is, get the Metadata that you want – Shreyas Chavan Aug 04 '15 at 20:13