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?
feedback
|
|
Starting with Windows Vista, metadata is now stored inside the file itself. | |||
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 | |||
|
feedback
|