pc-news
Goto Top

Ersatz für With Application.FileSearch in Excel 2010

Hallo,

habe in einer Excel Mappe folgendes VBA Script:

Private Function isFileAvailable(filename As String) As Boolean
With Application.FileSearch
.NewSearch
.filename = Right(filename, Len(filename) - InStrRev(filename, "\"))
.LookIn = Left(filename, InStrRev(filename, "\"))
isFileAvailable = .Execute() > 0
End With

End Function

In Excel 2010 funktioniert leider "With Application.FileSearch" nicht mehr.

Kennt jemand eine Alternative?

Gruß
Yvonne

Content-ID: 189479

Url: https://administrator.de/contentid/189479

Ausgedruckt am: 26.11.2024 um 09:11 Uhr

bastla
bastla 12.08.2012, aktualisiert am 13.08.2012 um 08:37:32 Uhr
Goto Top
Hallo pc-news!

Um das Vorhandensein einer Datei zu prüfen, sollte
Function isFileAvailable(filename As String) As Boolean
isFileAvailable = CreateObject("Scripting.FileSystemObject").FileExists(filename)  
End Function
genügen ...

Grüße
bastla
pc-news
pc-news 12.08.2012 um 20:58:06 Uhr
Goto Top
Hallo bastla,

vielen Dank für Deine Antwort. Hat mir super geholfen, genau das habe ich gesucht.

Grüße
pc-news