19 package org.sleuthkit.autopsy.casemodule.multiusercases;
21 import java.nio.file.Path;
22 import java.nio.file.Paths;
68 return caseDirectoryPath.toString();
81 String caseName = caseDirectoryPath.getFileName().toString();
84 if (caseName.endsWith(
"_")) {
85 caseName = caseName.substring(0, caseName.length() - 1);
100 return Paths.get(nodePath).getFileName().toString().equals(CASE_AUTO_INGEST_LOG_NAME);
112 return Paths.get(nodePath).getFileName().toString().endsWith(RESOURCES_LOCK_SUFFIX);
124 return !(nodePath.contains(
"\\") || nodePath.contains(
"//"));
static boolean isCaseNameNodePath(String nodePath)
static String getCaseDirectoryNodePath(Path caseDirectoryPath)
static String removeTimeStamp(String inputString)
static boolean isCaseResourcesNodePath(String nodePath)
CoordinationServiceUtils()
static String getCaseResourcesNodePath(Path caseDirectoryPath)
static String getCaseNameNodePath(Path caseDirectoryPath)
static boolean endsWithTimeStamp(String inputString)
static boolean isCaseAutoIngestLogNodePath(String nodePath)
static final String CASE_AUTO_INGEST_LOG_NAME
static String getCaseAutoIngestLogNodePath(Path caseDirectoryPath)
static final String RESOURCES_LOCK_SUFFIX