Get .CFG or .INI filename based on current application name


/ Published in: C#
Save to your folder(s)

Single-line expression provides .CFG filename based on application name.
The .CFG file is in the same directory as the application.
Application.ExecutablePath returns the app's path, with directory, including the trailing .EXE.
Regex is used to replace the .EXE with a .CFG or .INI


Copy this code and paste it in your HTML
  1. // Evaluates to something of the form "C:\AppDirectory\AppName.cfg".
  2.  
  3. static private string filename = System.Text.RegularExpressions.Regex.Replace( Application.ExecutablePath, "\\.exe$", ".cfg", System.Text.RegularExpressions.RegexOptions.IgnoreCase );

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.