Search results for query: *

  1. G

    Extended file attributes

    The Dimension is a property/Attribute for ".tif" files. The info I needed wasn't in file.IO I had to set a reference to "Imports Shell32". And use: Dim sh As New ShellClass Dim item As FolderItem Dim dir32 As Folder If UCase(ExtensionName) = "TIF" Then PathName = UCase(Mid(fname, 1...
  2. G

    Extended file attributes

    Hi, I need to read a files extended attributes in VB .NET. I currently do this with WSH/VBS, but I need the same capability in VB .NET. In VBS I use the GetDetailsOf() method to get the "Dimension" atribute of a file. The 26, seen below, corresponds to the index of the "Dimension" file attribute...
Back
Top