Проверьте, доступна ли SD-карта программно или нет
Мое приложение работает для мобильных телефонов, которые имеют только SD-карту. Поэтому программно я хочу проверить, доступна ли SD-карта или нет, и как найти свободное место на SD-карте. Является ли это возможным?
Если да, то как мне это сделать?
10 ответов
Boolean isSDPresent = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
Boolean isSDSupportedDevice = Environment.isExternalStorageRemovable();
if(isSDSupportedDevice && isSDPresent)
{
// yes SD-card is present
}
else
{
// Sorry
}
Принятый ответ не работает для меня
Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
Если устройство имеет встроенную память, оно возвращает true;Мое решение состоит в том, что для проверки количества каталогов внешних файлов, если их больше одного, устройство имеет SDCard. Это работает, и я проверил это на нескольких устройствах.
public static boolean hasRealRemovableSdCard(Context context) {
return ContextCompat.getExternalFilesDirs(context, null).length >= 2;
}
Вы можете проверить, доступна ли внешняя съемная SD-карта, как это
public static boolean externalMemoryAvailable(Activity context) {
File[] storages = ContextCompat.getExternalFilesDirs(context, null);
if (storages.length > 1 && storages[0] != null && storages[1] != null)
return true;
else
return false;
}
Это прекрасно работает, как я это проверил.
Использование Environment.getExternalStorageState()
как описано в разделе "Использование внешнего хранилища".
Чтобы получить доступное пространство на внешнем хранилище, используйте StatFs
:
// do this only *after* you have checked external storage state:
File extdir = Environment.getExternalStorageDirectory();
File stats = new StatFs(extdir.getAbsolutePath());
int availableBytes = stats.getAvailableBlocks() * stats.getBlockSize();
Я написал небольшой класс для проверки состояния хранилища. Может быть, это вам пригодится.
import android.os.Environment;
/**
* Checks the state of the external storage of the device.
*
* @author kaolick
*/
public class StorageHelper
{
// Storage states
private boolean externalStorageAvailable, externalStorageWriteable;
/**
* Checks the external storage's state and saves it in member attributes.
*/
private void checkStorage()
{
// Get the external storage's state
String state = Environment.getExternalStorageState();
if (state.equals(Environment.MEDIA_MOUNTED))
{
// Storage is available and writeable
externalStorageAvailable = externalStorageWriteable = true;
}
else if (state.equals(Environment.MEDIA_MOUNTED_READ_ONLY))
{
// Storage is only readable
externalStorageAvailable = true;
externalStorageWriteable = false;
}
else
{
// Storage is neither readable nor writeable
externalStorageAvailable = externalStorageWriteable = false;
}
}
/**
* Checks the state of the external storage.
*
* @return True if the external storage is available, false otherwise.
*/
public boolean isExternalStorageAvailable()
{
checkStorage();
return externalStorageAvailable;
}
/**
* Checks the state of the external storage.
*
* @return True if the external storage is writeable, false otherwise.
*/
public boolean isExternalStorageWriteable()
{
checkStorage();
return externalStorageWriteable;
}
/**
* Checks the state of the external storage.
*
* @return True if the external storage is available and writeable, false
* otherwise.
*/
public boolean isExternalStorageAvailableAndWriteable()
{
checkStorage();
if (!externalStorageAvailable)
{
return false;
}
else if (!externalStorageWriteable)
{
return false;
}
else
{
return true;
}
}
}
Я изменил его так, что если SD-карта существует, он устанавливает путь там. Если нет, он устанавливает его во внутреннем каталоге.
Boolean isSDPresent = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
if(isSDPresent)
{
path = theAct.getExternalCacheDir().getAbsolutePath() + "/GrammarFolder";
}
else
{
path = theAct.getFilesDir() + "/GrammarFolder";
}
void updateExternalStorageState() {
String state = Environment.getExternalStorageState();
if (Environment.MEDIA_MOUNTED.equals(state)) {
mExternalStorageAvailable = mExternalStorageWriteable = true;
} else if (Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
mExternalStorageAvailable = true;
mExternalStorageWriteable = false;
} else {
mExternalStorageAvailable = mExternalStorageWriteable = false;
}
handleExternalStorageState(mExternalStorageAvailable,
mExternalStorageWriteable);
}
Котлин
fun Context.externalMemoryAvailable(): Boolean {
val storages = ContextCompat.getExternalFilesDirs(this, null)
return storages.size > 1 && storages[0] != null && storages[1] != null
}
Этот простой метод работает для меня. Проверено на всех типах устройств.
public boolean externalMemoryAvailable() {
if (Environment.isExternalStorageRemovable()) {
//device support sd card. We need to check sd card availability.
String state = Environment.getExternalStorageState();
return state.equals(Environment.MEDIA_MOUNTED) || state.equals(
Environment.MEDIA_MOUNTED_READ_ONLY);
} else {
//device not support sd card.
return false;
}
}
public static boolean hasSdCard(Context context) {
File[] dirs = context.getExternalFilesDirs("");
if(dirs.length >= 2 && dirs[1]!=null){
if(Environment.isExternalStorageRemovable(dirs[1])){ // Extra Check
return true;
}
}
return false;
}
** i fixed this with help of @Jemo Mgebrishvili answer**
это работает отлично, даже если SD-карта присутствует и в извлеченном состоянии
if (ContextCompat.getExternalFilesDirs(this, null).length >= 2) {
File[] f = ContextCompat.getExternalFilesDirs(this, null);
for (int i = 0; i < f.length; i++) {
File file = f[i];
if(file!=null && i ==1)
{
Log.d(TAG,file.getAbsolutePath()+ "external sd card available");
}
}
} else {
Log.d(TAG, " external sd card not available");
}
Я создал класс, чтобы проверить, доступна ли папка на SD-карте:
public class GetFolderPath {
static String folderPath;
public static String getFolderPath(Context context) {
if (isSdPresent() == true) {
try {
File sdPath = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/FolderName");
if(!sdPath.exists()) {
sdPath.mkdirs();
folderPath = sdPath.getAbsolutePath();
} else if (sdPath.exists()) {
folderPath = sdPath.getAbsolutePath();
}
}
catch (Exception e) {
}
folderPath = Environment.getExternalStorageDirectory().getPath()+"/FolderName/";
}
else {
try {
File cacheDir=new File(context.getCacheDir(),"FolderName/");
if(!cacheDir.exists()) {
cacheDir.mkdirs();
folderPath = cacheDir.getAbsolutePath();
} else if (cacheDir.exists()) {
folderPath = cacheDir.getAbsolutePath();
}
}
catch (Exception e){
}
}
return folderPath;
}
public static boolean isSdPresent() {
return android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
}
}