Android 获取所有可用存储设备

发布于 2024-12-15 17:47:33 字数 98 浏览 1 评论 0原文

是否有任何功能/方法可以通过名称检测手机的各种不同存储空间。我的意思是检测所有内部/外部存储(如果您的设备上有多个可用存储)。如何检测是否有可用的SD卡?

提前致谢!

Is there any function/method which allow to detect all kind of different storage to your phone with their names. I mean to detect all internal/external storage if there is more than one available on your device. And how to detect if there is available SD Card or not?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南笙 2024-12-22 17:47:33

我不知道其他类型的存储设备,我只知道Android的内部存储和外部存储设备。

现在,要检查可用的外部存储,例如

public static boolean isSdPresent() {

return android.os.Environment.getExternalStorageState().equals(
android.os.Environment.MEDIA_MOUNTED);

}

return type boolean(true->available,false->NA).

,对于内部存储,(内部存储始终保持(存在),因此无需检查它)就像,

File path = Environment.getDataDirectory();

现在,在这两种情况下检查可用内存和使用内存,

StatFs stat = new StatFs(path.getPath());
long blockSize = stat.getBlockSize();
long availableBlocks = stat.getAvailableBlocks();
return Formatter.formatFileSize(this, availableBlocks * blockSize);

I don't know about other types of storage device, I only know Internal Storage and External Storage device for android.

Now for check available external storage something like,

public static boolean isSdPresent() {

return android.os.Environment.getExternalStorageState().equals(
android.os.Environment.MEDIA_MOUNTED);

}

return type boolean(true->available,false->NA).

And for Internal storage, (Internal storage is always remain (present) so no need to check it) just get like,

File path = Environment.getDataDirectory();

Now, in both case to check available free memory and usage memory,

StatFs stat = new StatFs(path.getPath());
long blockSize = stat.getBlockSize();
long availableBlocks = stat.getAvailableBlocks();
return Formatter.formatFileSize(this, availableBlocks * blockSize);
病毒体 2024-12-22 17:47:33

试试这个..

public static boolean isSdCardPresent() {

        return android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);

        }

Try this one..

public static boolean isSdCardPresent() {

        return android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);

        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文