Check to see if IDEA file exists
Brian Element
This function will specifically look to see if an IDEA file exists, it uses the IDEA project management object. Return True if file exists.
Snippet
Function checkIfIDEAFileExits(sTempIDEADB) As Boolean
Dim task As task
Set task = client.ProjectManagement
If task.DoesDatabaseExist(sTempIDEADB) Then
checkIfIDEAFileExits = True
Else
checkIfIDEAFileExits = False
End If
Set task = Nothing
End Function