修复linux斜杠

This commit is contained in:
sin365 2022-08-26 18:07:31 +08:00
parent 934011e3e3
commit 69d6648a0f
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -16,7 +16,7 @@ namespace AxibugTransfer.Config
cfgList = new List<CfgInfo>();
try
{
StreamReader sr = new StreamReader(System.Environment.CurrentDirectory + "\\config.cfg", Encoding.Default);
StreamReader sr = new StreamReader(System.Environment.CurrentDirectory + "//config.cfg", Encoding.Default);
String line;
while (!string.IsNullOrEmpty((line = sr.ReadLine())))
{