Sub FTP_ListCompleted (ServerPath As String, Success As Boolean, Folders() As FTPEntry, Files() As FTPEntry)
Log(ServerPath)
If Success = True Then
For i = 0 To Files().Size -1
If Files(i).Name.Contains(Username.Text.Trim) Then
'User File Found On Server
RemoveViews
Activity.LoadLayout("main")
Else
Msgbox("User Not Found...", "NOTICE")
End If
Next
End If
End Sub