[bug fix] When the environment is Linux/Unix, an exception will be thrown during the merge process due to incorrect paths
This commit is contained in:
parent
172f7b42c0
commit
558f53211d
|
@ -85,7 +85,9 @@ namespace N_m3u8DL_RE.Util
|
|||
else
|
||||
div = 200;
|
||||
|
||||
string outputName = Path.GetDirectoryName(files[0]) + "\\T";
|
||||
var delimiter=OperatingSystem.IsWindows()?"\\T":"/T";
|
||||
|
||||
string outputName = Path.GetDirectoryName(files[0]) + delimiter;
|
||||
int index = 0; //序号
|
||||
|
||||
//按照div的容量分割为小数组
|
||||
|
|
Loading…
Reference in New Issue