mirror of
https://github.com/n5ac/smartsdr-dsp.git
synced 2026-01-30 03:44:17 +01:00
Don't replace spaces with underscores to save APPDATA - This uses the existing FlexRadio Systems folder
This commit is contained in:
parent
2733a893f3
commit
693a362e35
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue