I am using the FileSystemObjec t to display the content of a directory/folder
in a browser.
I am wondering if there is a way for me to get/show the file's title (this
is the one in the property of the file, in the "Summary" tab, not the name
of the file).
I do not see the property in the file object to get the file's title.
Thank you.
strPhysicalPath = Server.MapPath( strPath)
Set objFSO = Server.CreateOb ject("Scripting .FileSystemObje ct")
Set objFolder = objFSO.GetFolde r(strPhysicalPa th)
Set objCollection = objFolder.Files
For Each objItem in objCollection
strName = objItem.Name
next
in a browser.
I am wondering if there is a way for me to get/show the file's title (this
is the one in the property of the file, in the "Summary" tab, not the name
of the file).
I do not see the property in the file object to get the file's title.
Thank you.
strPhysicalPath = Server.MapPath( strPath)
Set objFSO = Server.CreateOb ject("Scripting .FileSystemObje ct")
Set objFolder = objFSO.GetFolde r(strPhysicalPa th)
Set objCollection = objFolder.Files
For Each objItem in objCollection
strName = objItem.Name
next
Comment