Java first test

This commit is contained in:
QuantConnect
2015-06-29 22:12:56 -04:00
parent b6c1a0df67
commit a0f2c4dbca
4 changed files with 59 additions and 6 deletions
+15
View File
@@ -0,0 +1,15 @@
@ECHO OFF
SET javaCompiler=Not Found
SET javaCompilerx64="C:\Program Files\Java\jdk1.7.0_80\bin\javac.exe"
SET javaCompilerx86="C:\Program Files (x86)\Java\jdk1.7.0_80\bin\javac.exe"
dir "%javaCompilerx64%" > NUL 2>&1
if not errorlevel 1 (
echo Directory exists.
) else (
echo Directory does not exist.
)