标签: android email attachment
此代码将特定图片附加到文件夹中:
File dir = Environment.getExternalStorageDirectory(); File file = new File(dir.getAbsolutePath()+ "/pictures/test.jpg"); m.addAttachment(file.toString()); m.send();
但我希望我的应用程序附加所有照片都在文件夹中,而不指定其名称。有可能吗?