ini file outside of build

So I made a .ini file for the settings in the game but I would like to have this file accessible in the build data folder.
How would I go about doing this?

The build is for Windows.

Unity does not copy non-Asset files to the build folder automatically, but you can put the file there yourself. Or you can make sure the file is interpreted as an asset by Unity (make it a text asset instead of an ini-file), and then access it in-game using Resources.Load. Then Unity builds the file into its assets.resources file in the [yourGameName]_Data folder at post-build.

If you really need to make it an ini-file and keep out of Unity’s build pipeline, you have to copy it to the target location in the build folder yourself, and read it using standard .Net API, i.e. streamreaders, XML documents or System.IO.File.ReadAllLines, or whatever method fits the format your ini file is in.