yes, of course u can! try this ;-)
<% Dim fso ' File System Object
'create Scripting.FileSystemObject object.
'We will be using this FileSystemObject to
'iterate through the files in "uploaded" folder and display a list of them.
Set fso = Server.CreateObject("Scripting.FileSystemObject"
Dim folder ' "Uploaded" Folder
Set folder = fso.GetFolder(Server.MapPath(temp_path))
'temp_path is the folder you want to read your files
'use the reference to this folder to display a list of files it contains
If folder.Size > 0 Then
ctr = 1
For Each file In folder.Files %>
response.write file.Name & ", " & file.Size
Next
End If
'Folder.Size property to check if the folder is empty or not. If folder contains any
'files then Folder.Size will give us total number of bytes this folder contains. So if
'folder contains any files then we iterate through the Folder.Files collection and
'display all the file names along with their sizes.
%>