File_FindInFile
Description
Section titled “Description”Search for specified string in a file.
Syntax
Section titled “Syntax”File_FindInFile(sFile, sSearchString, bIgnoreCase, bMustExist) As Boolean
Parameters
Section titled “Parameters”sFile (String)
Section titled “sFile (String)”Filename
sSearchString (String)
Section titled “sSearchString (String)”String to find
bIgnoreCase (Boolean)
Section titled “bIgnoreCase (Boolean)”Ignore case
bMustExist (Boolean)
Section titled “bMustExist (Boolean)”String must exist
Return value
Section titled “Return value”If sSeachString is found, gbValue is true, line numbers are returned in gaValue and gsValue will contain the content of the last line
The function will return false if sSearchString is not found and bMustExist is true
Example
Section titled “Example”If bStatus Then bStatus = File_FindInFile("C:\CapaInstaller.txt", "CapaInstaller", True, True)If bStatus And gbValue Then For index = LBound(gaValue) to UBound(gaValue) bStatus = Job_WriteLog("Custom", "String found in line: " & gaValue(index), bStatus, True) NextEnd IfRelated functions
Section titled “Related functions”File_AppendToFile File_GetLineString File_InsertInFile Constants Package Property Variables