| Author |
How to set/modify Windows File Properties via Java?
|
Chris Congdon
Greenhorn
Joined: Jun 12, 2006
Posts: 1
|
|
My program creates Microsoft Excel Regression Functions, and saves them as *.bas files (Visual Basic for Applications). When I create these text files in Java, I want to assign file properties to them. These are the properties that are called up in Windows by right clicking on the file and selecting PROPERTIES->SUMMARY->ADVANCED. Windows allows a Title, Subject, Keywords, and other Meta-information to be stored here. I have done an hour of searching, and have not yet found anything. Any help would be appreciated.
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12921
|
|
I don't think it is possible to do this in Windows for plain text files. The properties that you see for Excel (*.xls) and Word (*.doc) documents are just data stored somewhere in the file, and Windows Explorer knows how to read that metadata from Microsoft Office documents. The Windows file system (FAT or NTFS) doesn't have a feature for storing arbitrary metadata for any file type, as far as I know. This is a very Windows-specific question, so even if it were possible, you won't find anything in the standard Java API to do it. Maybe you can find more info on how this works in Windows in the MSDN Library. [ June 13, 2006: Message edited by: Jesper Young ]
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: How to set/modify Windows File Properties via Java?
|
|
|