If $oStatusCode = 404 Then
_FileReadToArray("email.txt", $aInput[$i])
For $i = 1 To $aInput[$i]
$aInput[$i] &= "[SUCCESS]"
Next
_FileWriteFromArray("checked.txt", $aInput[$i], 1)
EndIf
I am trying to write [SUCECSS] on each line in my email.txt file and store it as "Checked.txt"
I have written this code from my research here on this forum, but I just can't get it to work.
I've tried different ways of using array, also tried using "FileWriteLine" functions, nothing works out for me.
I hope someone can point me towards a solution and/or write the code I need with an explanation.
Thanks in advance.