VBA - if exists?
.:thomas:.
- vb-script
0 Rouven
Hallo,
ich suche eine Möglichkeit, wie man in VBA (Makro) überprüfen kann, ob ein Pfad exisitiert.
Beispiel:
Danke.
Hi,
ich denke du brauchst ein FileSystemObject:
Set fso = new FileSystemObject
-----
Returns True if a specified file exists; False if it does not.
Syntax
object.FileExists(filespec)
------
If (fso.FileExists("C:\TEST\WINWORD.EXE") = true) then
shell("c:\test\winword.exe")
end if
--> Wie du allerdings die Datei suchen kannst weiß ich gerade nicht auswendig