I am creating an installer using inno setup and I am using a simple ini file as a database for a specific operation. My ini file consist of section users and key username and its value is the username of a particular person. Example:
[Users]
username=alice
username=bob etc....
In one of the custom pages created by me, I am prompting the user to enter the username, so now I need to check whether the entered username exists in the ini file or not. So how can I achieve this.