중복파일삭제 수정
This commit is contained in:
@@ -178,9 +178,14 @@ public class FIleChecker {
|
||||
|
||||
if (isWindows) {
|
||||
// 윈도우용
|
||||
command.add("cmd.exe");
|
||||
command.add("/c");
|
||||
command.add(gdalinfoPath + " \"" + filePath + "\" | findstr /i Geo");
|
||||
command.add("cmd.exe"); // 윈도우 명령 프롬프트 실행
|
||||
command.add("/c"); // 명령어를 수행하고 종료한다는 옵션
|
||||
command.add("gdalinfo");
|
||||
command.add(filePath);
|
||||
command.add("|");
|
||||
command.add("findstr");
|
||||
command.add("/i");
|
||||
command.add("Geo");
|
||||
} else if (isMac || isUnix) {
|
||||
// 리눅스, 맥용
|
||||
command.add("sh");
|
||||
|
||||
Reference in New Issue
Block a user