Eu tentei as soluções fornecidas por Dmitriy Lozenko e Gnathonic em meu Samsung Galaxy Tab S2 (modelo: T819Y), mas nenhuma me ajudou a recuperar o caminho para um diretório de cartão SD externo. mount
a execução do comando continha o caminho necessário para o diretório externo do cartão SD (ou seja, / Storage / A5F9-15F4), mas não correspondia à expressão regular, portanto, não foi retornado. Não entendi o mecanismo de nomenclatura de diretório seguido por Samsung. Por que eles se desviam dos padrões (extsdcard) e aparecem com algo realmente suspeito, como no meu caso (ou seja, / Storage / A5F9-15F4) . Está faltando alguma coisa? De qualquer forma, seguindo as mudanças na expressão regular de Gnatônico solução me ajudou a obter um diretório sdcard válido:
final HashSet<String> out = new HashSet<String>();
String reg = "(?i).*(vold|media_rw).*(sdcard|vfat|ntfs|exfat|fat32|ext3|ext4).*rw.*";
String s = "";
try {
final Process process = new ProcessBuilder().command("mount")
.redirectErrorStream(true).start();
process.waitFor();
final InputStream is = process.getInputStream();
final byte[] buffer = new byte[1024];
while (is.read(buffer) != -1) {
s = s + new String(buffer);
}
is.close();
} catch (final Exception e) {
e.printStackTrace();
}
// parse output
final String[] lines = s.split("\n");
for (String line : lines) {
if (!line.toLowerCase(Locale.US).contains("asec")) {
if (line.matches(reg)) {
String[] parts = line.split(" ");
for (String part : parts) {
if (part.startsWith("/"))
if (!part.toLowerCase(Locale.US).contains("vold"))
out.add(part);
}
}
}
}
return out;
Não tenho certeza se esta é uma solução válida e se dará resultados para outros tablets Samsung, mas corrigiu meu problema por enquanto. A seguir está outro método para recuperar o caminho removível do cartão SD no Android (v6.0). Eu testei o método com o Android Marshmallow e funciona. A abordagem usada é muito básica e certamente funcionará com outras versões também, mas o teste é obrigatório. Algumas dicas sobre isso serão úteis:
public static String getSDCardDirPathForAndroidMarshmallow() {
File rootDir = null;
try {
// Getting external storage directory file
File innerDir = Environment.getExternalStorageDirectory();
// Temporarily saving retrieved external storage directory as root
// directory
rootDir = innerDir;
// Splitting path for external storage directory to get its root
// directory
String externalStorageDirPath = innerDir.getAbsolutePath();
if (externalStorageDirPath != null
&& externalStorageDirPath.length() > 1
&& externalStorageDirPath.startsWith("/")) {
externalStorageDirPath = externalStorageDirPath.substring(1,
externalStorageDirPath.length());
}
if (externalStorageDirPath != null
&& externalStorageDirPath.endsWith("/")) {
externalStorageDirPath = externalStorageDirPath.substring(0,
externalStorageDirPath.length() - 1);
}
String[] pathElements = externalStorageDirPath.split("/");
for (int i = 0; i < pathElements.length - 1; i++) {
rootDir = rootDir.getParentFile();
}
File[] files = rootDir.listFiles();
for (File file : files) {
if (file.exists() && file.compareTo(innerDir) != 0) {
// Try-catch is implemented to prevent from any IO exception
try {
if (Environment.isExternalStorageRemovable(file)) {
return file.getAbsolutePath();
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
} catch (Exception ex) {
ex.printStackTrace();
}
return null;
}
Por favor, compartilhe se você tiver qualquer outra abordagem para lidar com esse problema. obrigado