I am installing the Apache through the Inno setup. Now I want to copy the httpd.conf file from my localdisk to Apache conf folder after the Apache installation. How can I achieve this using inno setup?
相关问题
- Lazily Reading a File in D
- DirectoryStream.Filter example for listing files t
- Replacing or recreating a file in Windows 8 RT kee
- Reliability of file locking on network files
- How to write Object as human readable text file
相关文章
- How to replace file-access references for a module
- Why is file_get_contents faster than memcache_get?
- Transactionally writing files in Node.js
- In inno setup how to set the unins000.exe with pro
- Getting the cluster size of a hard drive (through
- Example for file read/write with NSFileHandle
- line-by-line file processing, for-loop vs with
- Is it possible to create checkbox tree view in Inn
you can use my code to copy your httpd.conf file to Apache conf folder,try it:)
I solved this issue by using the
command in [Run] section. It works fine.