Function getfilePTY(strFl )
Dim fso
Dim fl
Dim pth
Dim flname
Dim shl
Dim shfd
Dim s
Dim i
Set fso = server.CreateObject("scripting.filesystemobject")
Set fl = fso.GetFile(strFl)
pth = fl.ParentFolder.Path
flname = fl.Name
Set shl =server.CreateObject("Shell.application")
Set shfd = shl.NameSpace(pth)
For i = 0 To 33
If shfd.GetDetailsOf(0, i) <> "" Or shfd.GetDetailsOf(shfd.Items.Item(flname), i) <> "" Then
s = s & shfd.GetDetailsOf(0, i) & ": " & shfd.GetDetailsOf(shfd.Items.Item(flname), i) & "<br>"
End If
Next