I am trying to grab Windows file properties using Java. The information that I am trying to get is the information under details, such as: author, date created, tags, folder path, etc. I have tried to use the answer from: Reading Windows file summary properties (title, subject, author) in Java.
FileInputStream in = new FileInputStream("test.txt:\u2663SummaryInformation");
Yet, when I try this, it gives me File Not Found Exception. I have made sure that the file that I am trying to open exists. I have also made sure that Eclipse is in UTF-8 mode (for the club "\u2663" before "SummaryInformation"). I have also tried it out of UTF-8 mode. I am unsure why I am getting the File Not Found Exception. Any help would be appreciated.