Click here to Skip to main content
15,891,473 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more: (untagged)
In using a program, freeCommander, it initializes with an ini file. I want to take 3 sections out for my customized tools, and have the oem.ini file read these values from the attached custom ini,

This is make it easier to update and export to other sessions of the program

in a batch file I could just: Call custom ini

One of the sections enumerates the tools, as individual sections, of which I have about 30
Posted
Comments
Pascal Ganaye 23-Jun-12 7:57am    
Rather than downvoting the people who are trying to help you, you should tell them why you're not happy with their answer.

As you are suggesting batch files, I assume this is what you're comfortable with.
So in a batch file you could write
copy IniFile1.ini + IniFile2.ini + IniFile3.ini FreeCommander.ini

This will append the 3 ini files together and save it as FreeCommander.ini
 
Share this answer
 
v2
You cannot "call" INI file because this is not code and not a function, method or procedure.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900