다음을 통해 공유


File Properties in Windows Vista

When you copy files from Windows XP or Windows Server 2003 operating systems to Windows Vista you will see that the properties are arranged differently and some are missing. In particular the file properties gathered in the "Summary" tab have missing values. If you programmatically manipulated the properties through the Shell32 API it will work fine in XP but will not work in Vista.

Vista File Properties

Figure 1. File Properties for the same physical file show in the Windows XP and Windows Vista Shell.

The explanation is that in Windows Vista the support for secondary NTFS stream properties has been dropped from the Shell. This is because if the file is send via e-mail or copied to non- NTFS file system (a lot of pen drives are formatted as FAT) these properties are lost anyway. So in Vista the file properties have been reengineered to be stored with the physical file and require a property handler. Vista has a number of built in property handlers for certain formats, for example OLEDoc File that you can register for a given file extension but only if the file has been stored in this format.

But is there any alternative to Shell32 API to get your program working in Vista if it needs to manipulate the secondary NTFS stream properties? After all Vista uses NTFS file system and the file properties are still there (you can make sure by creating a network share on Vista and viewing the file with XP client machine. Following document describes the alternative and has source code sample for accessing the properties

"The Dsofile.dll files lets you edit Office document properties when you do not have Office installed"

https://support.microsoft.com/?kbid=224351

Of course if you are migrating your application to Vista, it is recommendable to remove the dependency of your application on these properties but there may be scenarios where this is not possible and where the above article provides you with a workaround.

Comments

  • Anonymous
    September 25, 2007
    PingBack from http://www.artofbam.com/wordpress/?p=2869

  • Anonymous
    February 01, 2009
    I am using MS Access 2007 on a Vista system. I want to programatically manipulate the file properties details of .jpg files (Tags, Comments, etc) with a VBA script in Access 2007. What I  am trying to do is use Windows Vista MS Access 2007 database VBA code to edit the Caption and Tags fields stored in .jpgs used by Picasa 3 and the Tags, Comments and Titles fields you see in an Explorer Window file properties details list. I tried DSOFile.dll but it access a different set of fields to the ones used by Explorer/ I am not familiar with C or .NET but I can use VBA. Any idea how I might be able to do this?

  • Anonymous
    July 26, 2010
    Is there a way to force Vista to show the subject (a file property) for .pdf files when looking at directories, folders, and files? I have not been able to succeed with this, for nearly 2 years!