I'm trying to read in image data using the filesystemobjec t. I am able
to read the comments field for all file types it seems, except the ones
I want, .gif .jpg and .bmp.
Is it possible to do this?! If so what might I need to do?
Thanks!
here is the script im using to loop through each possible sub field:
Dim arrHeaders(34)
Set objShell = CreateObject("S hell.Applicatio n")
Set objFolder = objShell.Namesp ace("E:\images" )
For i = 0 to 33
arrHeaders(i) = objFolder.GetDe tailsOf(objFold er.Items, i)
Next
For Each strFileName in objFolder.Items
For i = 0 to 33
Response.Write( i & vbtab & arrHeaders(i) & ": " &
objFolder.GetDe tailsOf(strFile Name, i) & "<br>")
Next
Next
to read the comments field for all file types it seems, except the ones
I want, .gif .jpg and .bmp.
Is it possible to do this?! If so what might I need to do?
Thanks!
here is the script im using to loop through each possible sub field:
Dim arrHeaders(34)
Set objShell = CreateObject("S hell.Applicatio n")
Set objFolder = objShell.Namesp ace("E:\images" )
For i = 0 to 33
arrHeaders(i) = objFolder.GetDe tailsOf(objFold er.Items, i)
Next
For Each strFileName in objFolder.Items
For i = 0 to 33
Response.Write( i & vbtab & arrHeaders(i) & ": " &
objFolder.GetDe tailsOf(strFile Name, i) & "<br>")
Next
Next
Comment