Update ScriptSrvice.java

This commit is contained in:
string 2025-04-26 11:55:52 +05:30
parent e75bf1ae9a
commit 6d9bdbdef6

View File

@ -267,7 +267,7 @@ public class ScriptSrvice {
ref_path = sureopspath_name;
Path1 = Path1 + ref_path;
Path1 = Path1 + File.separator + ref_path;
System.out.println(Path1);
File Dir1 = new File(Path1);
@ -282,9 +282,9 @@ public class ScriptSrvice {
// when destination is empty
} else {
ref_path = File.separator + "index";
ref_path = "index";
Path1 = Path1 + ref_path;
Path1 = Path1 + File.separator + ref_path;
System.out.println(Path1);
File Dir2 = new File(Path1);