%@LANGUAGE="VBSCRIPT"%>
<%
Option Explicit
Dim strPhysicalPath
Dim objFSO, objFolder, objFiles, objFile
Dim i, m
' create a system file object
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
' create an object for the folder
strPhysicalPath = server.mappath("\") & "/images/barchiv/klein"
Set objFolder = objFSO.GetFolder(strPhysicalPath)
Set objFiles = objFolder.Files
%>