我正在创建一个文件以作为电子邮件附件发送。现在,我想在发送电子邮件后删除图像。有没有办法删除文件?
我已经尝试过,myFile.delete();
但是没有删除文件。
我正在将此代码用于Android,因此编程语言是Java,使用通常的Android方法访问SD卡。发送电子邮件后,将an返回到屏幕onActivityResult
时,我正在方法中删除文件Intent
。
我正在创建一个文件以作为电子邮件附件发送。现在,我想在发送电子邮件后删除图像。有没有办法删除文件?
我已经尝试过,myFile.delete();
但是没有删除文件。
我正在将此代码用于Android,因此编程语言是Java,使用通常的Android方法访问SD卡。发送电子邮件后,将an返回到屏幕onActivityResult
时,我正在方法中删除文件Intent
。
Answers:
File file = new File(selectedFilePath);
boolean deleted = file.delete();
其中selectedFilePath是要删除的文件的路径,例如:
/sdcard/YourCustomDirectory/ExampleFile.mp3
另外,如果您使用的是> 1.6 SDK,则必须授予权限
uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
在AndroidManifest.xml
文件中
ContentResolver
应用程序都不允许以写 (删除,修改...)到外部存储除了其特有的包目录。
如Android文档所述:
“除合成权限允许的应用程序特定于程序包的目录外,不得允许应用程序写入辅助外部存储设备。”
但是,存在讨厌的解决方法(请参见下面的代码)。已在Samsung Galaxy S4上进行了测试,但此修补程序不适用于所有设备。另外,我也不会指望在未来的Android版本中可以使用这种解决方法。
您可以在此处阅读有关解决方法的更多信息。解决方法源代码来自此站点。
public class MediaFileFunctions
{
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public static boolean deleteViaContentProvider(Context context, String fullname)
{
Uri uri=getFileUri(context,fullname);
if (uri==null)
{
return false;
}
try
{
ContentResolver resolver=context.getContentResolver();
// change type to image, otherwise nothing will be deleted
ContentValues contentValues = new ContentValues();
int media_type = 1;
contentValues.put("media_type", media_type);
resolver.update(uri, contentValues, null, null);
return resolver.delete(uri, null, null) > 0;
}
catch (Throwable e)
{
return false;
}
}
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
private static Uri getFileUri(Context context, String fullname)
{
// Note: check outside this class whether the OS version is >= 11
Uri uri = null;
Cursor cursor = null;
ContentResolver contentResolver = null;
try
{
contentResolver=context.getContentResolver();
if (contentResolver == null)
return null;
uri=MediaStore.Files.getContentUri("external");
String[] projection = new String[2];
projection[0] = "_id";
projection[1] = "_data";
String selection = "_data = ? "; // this avoids SQL injection
String[] selectionParams = new String[1];
selectionParams[0] = fullname;
String sortOrder = "_id";
cursor=contentResolver.query(uri, projection, selection, selectionParams, sortOrder);
if (cursor!=null)
{
try
{
if (cursor.getCount() > 0) // file present!
{
cursor.moveToFirst();
int dataColumn=cursor.getColumnIndex("_data");
String s = cursor.getString(dataColumn);
if (!s.equals(fullname))
return null;
int idColumn = cursor.getColumnIndex("_id");
long id = cursor.getLong(idColumn);
uri= MediaStore.Files.getContentUri("external",id);
}
else // file isn't in the media database!
{
ContentValues contentValues=new ContentValues();
contentValues.put("_data",fullname);
uri = MediaStore.Files.getContentUri("external");
uri = contentResolver.insert(uri,contentValues);
}
}
catch (Throwable e)
{
uri = null;
}
finally
{
cursor.close();
}
}
}
catch (Throwable e)
{
uri=null;
}
return uri;
}
}
false
并且不会删除文件:-(
Android上下文具有以下方法:
public abstract boolean deleteFile (String name)
我相信这将按照上面列出的正确应用程序权限来完成您想要的工作。
context.deleteFile(filename);
递归删除文件的所有子级...
public static void DeleteRecursive(File fileOrDirectory) {
if (fileOrDirectory.isDirectory()) {
for (File child : fileOrDirectory.listFiles()) {
DeleteRecursive(child);
}
}
fileOrDirectory.delete();
}
这对我有用:(从Gallery中删除图像)
File file = new File(photoPath);
file.delete();
context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(new File(photoPath))));
public static boolean deleteDirectory(File path) {
// TODO Auto-generated method stub
if( path.exists() ) {
File[] files = path.listFiles();
for(int i=0; i<files.length; i++) {
if(files[i].isDirectory()) {
deleteDirectory(files[i]);
}
else {
files[i].delete();
}
}
}
return(path.delete());
}
该代码将为您提供帮助。.在Android Manifest中,您必须获得许可才能进行修改。
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
file.exists:true file.isDirectory:true file.canRead:false file.canWrite:false
试试这个。
File file = new File(FilePath);
FileUtils.deleteDirectory(file);
从Apache Commons
private boolean deleteFromExternalStorage(File file) {
String fileName = "/Music/";
String myPath= Environment.getExternalStorageDirectory().getAbsolutePath() + fileName;
file = new File(myPath);
System.out.println("fullPath - " + myPath);
if (file.exists() && file.canRead()) {
System.out.println(" Test - ");
file.delete();
return false; // File exists
}
System.out.println(" Test2 - ");
return true; // File not exists
}
File filedel = new File("/storage/sdcard0/Baahubali.mp3");
boolean deleted1 = filedel.delete();
或者,尝试以下操作:
String del="/storage/sdcard0/Baahubali.mp3";
File filedel2 = new File(del);
boolean deleted1 = filedel2.delete();