fix for File.exists() check

This commit is contained in:
2017-07-05 16:26:06 +02:00
parent 5944134afc
commit 55ca7cee68
@@ -30,7 +30,7 @@ public class ToolboxDirectVideoExporter {
private static Logger log = Logger.getLogger(ToolboxDirectVideoExporter.class); private static Logger log = Logger.getLogger(ToolboxDirectVideoExporter.class);
String cookie = "ASP.NET_SessionId=kboqi1uznhyvxsgyezsl5z3t; userid=1041"; String cookie = "userid=1041; ASP.NET_SessionId=g2zgjcvnbrel3stxt1zm05ra";
boolean proxy = true; boolean proxy = true;
static final String viewStateMarker = "id=\"__VIEWSTATE\" value=\""; static final String viewStateMarker = "id=\"__VIEWSTATE\" value=\"";
@@ -105,7 +105,7 @@ public class ToolboxDirectVideoExporter {
if (new File(filePath).exists()) { if (new File(filePath).exists()) {
log.info(filePath + " exists, skipping"); log.info(filePath + " exists, skipping");
break; continue;
} }
try { try {