检查给定文件是否存在于该路径上或不存在于 Android 文件系统中?

发布于 2024-12-01 06:40:01 字数 71 浏览 0 评论 0原文

我们如何在不使用文件输入流的情况下检查给定的文件是否存在于 Android 文件系统中。因为我只想检查给定路径上的文件是否存在。

How can we check the given file is present in Android Filesystem or not without using File inputstream.because I only want to check the existence of the file on the given path.

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

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

发布评论

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

评论(2

手心的温暖 2024-12-08 06:40:01
File myFile = new File("/path/to/file");
if (myFile.isFile()) {
    ...
}
File myFile = new File("/path/to/file");
if (myFile.isFile()) {
    ...
}
风柔一江水 2024-12-08 06:40:01

如果您使用 openFileOutput 方法创建了一个文件,那么这可以工作,

File mFile = new File(getBaseContext().getFilesDir(),FileName);
if (mFile.exists() )
{
   //File is Exits.

}
else
{
//File is not Exits.
}

希望这会有所帮助

If you have created a file using openFileOutput method then this works

File mFile = new File(getBaseContext().getFilesDir(),FileName);
if (mFile.exists() )
{
   //File is Exits.

}
else
{
//File is not Exits.
}

hope this helps

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