Skip to content

Commit

Permalink
Merge pull request #208 from cyclamenkde/main
Browse files Browse the repository at this point in the history
[bug fix] When the environment is Linux/Unix, an exception will be th…
  • Loading branch information
nilaoda authored Jun 22, 2023
2 parents 172f7b4 + a1bfcec commit c5523c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/N_m3u8DL-RE/Util/MergeUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static string[] PartialCombineMultipleFiles(string[] files)
else
div = 200;

string outputName = Path.GetDirectoryName(files[0]) + "\\T";
string outputName = Path.Combine(Path.GetDirectoryName(files[0])!, "T");
int index = 0; //序号

//按照div的容量分割为小数组
Expand Down

0 comments on commit c5523c9

Please sign in to comment.