경로가 파일 또는 폴더를 나타내는지 확인합니다. 유효한 방법으로 체크할 필요가 있습니다.String는 파일 또는 디렉토리의 경로를 나타냅니다.Android에서 유효한 디렉토리 이름은 무엇입니까?폴더 이름에는 다음 항목이 포함될 수 있습니다.'.'chars는 파일이 있는지 폴더가 있는지 어떻게 인식합니까?가정하다path당신의 것입니다String. File file = new File(path); boolean exists = file.exists(); // Check if the file exists boolean isDirectory = file.isDirectory(); // Check if it's a directory boolean isFile = file.isFile(); // Check if i..