Android 从内部存储中删除设置/文件

发布于 2024-12-17 02:33:16 字数 381 浏览 1 评论 0原文

是否有任何功能可以删除内部存储中我的应用程序的所有文件夹。我需要一种方法来重置我的应用程序并清除内部存储中应用程序文件夹中所有已保存的文件/设置/数据库。实现这一目标的最佳方法是什么?

编辑:

我正在使用的代码:

String name = context.getFilesDir()+"/documents/users/stampiiii/2345/data/";
Log.e("","path : "+name);
File myDir = new File(name);
myDir.delete();
boolean iff = myDir.delete();
Log.e("","iff : "+iff);

提前感谢您的建议/帮助/建议!

IS there any function which can delete all folders of my application in Internal Storage. I need a way to reset my application and to clear all saved files/settings/databases in my application's folder in internal storage. Which is the best way to achieve this?

EDIT:

Code I'm using :

String name = context.getFilesDir()+"/documents/users/stampiiii/2345/data/";
Log.e("","path : "+name);
File myDir = new File(name);
myDir.delete();
boolean iff = myDir.delete();
Log.e("","iff : "+iff);

Thanks in advance for suggestions/help/advice!

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

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

发布评论

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

评论(3

风透绣罗衣 2024-12-24 02:33:17

尝试 上下文。 deleteFile()

public abstract boolean  deleteFile  (String name)

删除与此上下文的应用程序包关联的给定私有文件。

或者

File file = new File("File path");
                    boolean deleted = file.delete();

Try Context.deleteFile()

public abstract boolean  deleteFile  (String name)

Delete the given private file associated with this Context's application package.

Or

File file = new File("File path");
                    boolean deleted = file.delete();
铁轨上的流浪者 2024-12-24 02:33:17

我不确定是否有编程方式来执行此操作,但您可以在设置->应用程序->管理应用程序-><您的应用程序>->清除数据中手动执行此操作代码>

I'm not sure if there is a programmatic way of doing it, but you can do it manually in Settings->Applications->Manage applications-><Your app>->Clear data

迷途知返 2024-12-24 02:33:17

是的,但要添加到其他设备中,有某种 getExternalStorage 调用,然后我会添加使用 file.listFiles 获取列表,然后并不是所有设备实际上都按照规范执行操作,所以聪明人会以某种方式放置一些东西,这样您就可以知道哪些文件是你的,就像你删除了别人的文件一样,这是 baddo delux

yes but add to the others that there is a getExternalStorage call of some kind then I would add get a listing with file.listFiles then to that there not all devices actually do what the spec says so smartie is to put something somehow so you can tell which files are yours as if you del someone else's files that is baddo delux

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