GetFiles
Method of IProject
Description
Collects file names from project, using filter (NULL is take all). Returns SAFEARRAY of BSTR
Parameters
- BSTR strPatern
Return Value
- VARIANT ppFileNames
Syntax
JavaScript
var ppFileNames = Project.GetFiles(strPatern);
Visual Basic Script
ppFileNames = Project.GetFiles strPatern
C++
VARIANT pFileNames; HRESULT hr = Project.GetFiles(strPatern, &pFileNames);