Das Notes Forum
Domino 9 und frühere Versionen => ND6: Entwicklung => Thema gestartet von: qwertz442000 am 26.03.09 - 10:58:04
-
Hallo,
ich suche ein Sript mit der Möglichkeit nachzuprüfen ob eine Datei vorhanden ist oder nicht. Ich benötige aber Wildcarts.
Also z.Beispiel C:\TMP\TEST*.TXT Datei
-
Aus der Designerhilfe
Examples: Dir function
' List the contents of the c:\ directory, one entry per line.
Dim pathName As String, fileName As String
pathName$ = "c:\*.*"
fileName$ = Dir$(pathName$, 0)
Do While fileName$ <> ""
Print fileName$
fileName$ = Dir$()
Loop