Don't replace spaces with underscores to save APPDATA - This uses the existing FlexRadio Systems folder

This commit is contained in:
Ed Gonzalez 2015-09-03 13:28:24 -05:00
parent 2733a893f3
commit 693a362e35

View file

@ -509,7 +509,7 @@ namespace CODEC2_GUI
AssemblyInfo ai = new AssemblyInfo(Assembly.GetAssembly(typeof(MainForm)));
string mybasepath = System.IO.Path.Combine(basepath, ai.Company.Replace(' ', '_'), ai.ProductTitle.Replace(' ', '_'));
string mybasepath = System.IO.Path.Combine(basepath, ai.Company, ai.ProductTitle);
if (!System.IO.Directory.Exists(mybasepath))
System.IO.Directory.CreateDirectory(mybasepath);