In Windows 7 I can add meta data to files for example title, rating and so on. Where is this meta data stored exactly? For NTFS they may use alternate data streams but I this meta data also happen to work in FAT32, so how ho they do it? Is there an API to make use of this feature?

link|improve this question

Could it be related to this? – Default May 21 '11 at 9:52
No, as I said, since it also works on FAT, no alternate data streams can be involved since FAT doesn't support them – codymanix May 21 '11 at 10:33
1  
On both FAT and NTFS, they could use extended attributes (en.wikipedia.org/wiki/Extended_file_attributes) – Larry Osterman May 21 '11 at 15:15
feedback

2 Answers

Starting with Windows Vista, metadata is now stored inside the file itself.

link|improve this answer
Of course it only works for certain file types. For example, it's never going to work for a text file! – David Heffernan May 21 '11 at 12:19
feedback

Windows stores this in COM Structured storage. The implementation is either in the file itself (Office docs support this, or any file format that supports structured storage), or in NTFS itself.

The API is available here: Structured Storage. The interesting function is StgOpenStorageEx.

Here are some details about NTFS implementation: IPropertySetStorage-NTFS File System Implementation

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.