Is it possible to get the file title of a file with vbsscript? like when you click Properties then Resume and set the title.
This is my actual code.
This is my actual code.
Code:
<%
Dim objFSO
Dim objFolder
Dim objFile
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFolder = objFSO.GetFolder("C:/test")
For Each objFile In objFolder.Files
Response.Write(objFile.Name)
Next