I have a console application and it has a folder images in it.
How can I set path in the app.config file similar to below:
~/images/logo.jpg
../images/logo.jpg
|
I have a console application and it has a folder images in it. How can I set path in the app.config file similar to below: ~/images/logo.jpg ../images/logo.jpg |
||||
|
|
Use System.IO.Path.Combine method to combine a base path with a relative path like:
Environment.CurrentDirectory in the above line with whatever base path you want. |
|||
|
|
|
Are you asking how to add those file names to the app.config? if so...
This can be read by adding a reference to System.Configurations And then calling You can access any value in the app.config using the Configuration manager. |
|||
|
|