在Android中,查找文件路徑通常需要使用Java的File類和Environment類。以下是一些示例代碼,展示了如何查找不同類型的文件路徑:
File internalStorageDir = getFilesDir();
String path = internalStorageDir.getAbsolutePath();
File externalStorageDir = Environment.getExternalStorageDirectory();
String path = externalStorageDir.getAbsolutePath();
File directory = new File(Environment.getExternalStorageDirectory(), "YourCategory");
if (!directory.exists()) {
directory.mkdirs();
}
File file = new File(directory, "YourFileName.jpg");
String path = file.getAbsolutePath();
File file = new File("YourFileName.jpg");
String path = file.getAbsolutePath();
請注意,從Android 10(API級別29)開始,訪問外部存儲的方式發生了變化。如果您的應用程序需要支持Android 10及更高版本,請查閱存儲訪問框架和分區存儲的相關文檔。