Android :: How To Delete File From SD Card?

Aug 8, 2009

I am creating a file to send as an attachment to an email. Now I want to delete the image after sending the email. Is there a way to delete the file? i have tried: myFile.delete();but it didn't delete the file.

Android :: How to delete file from SD card?


HTC Desire :: How To Delete PDF File On SD Card?

Sep 1, 2010

Just downloaded the same PDF file twice. Not that it will eat up much storage space but how do I access the SD card if I did want to delete it via the phone? Also, when in PDF viewer, I noticed a couple of other files such as the quick start guide. I can only assume that they come as standard on the card? And not that Carphone Warehouse gave me an already used phone/SD card?

View 1 Replies View Related

HTC Droid Eris :: Can I Delete 2.1 File SD Card Installed On Phone

Mar 4, 2010

I apologize if this has already been asked and answered. Obviously I'm new here and not real sure how the search function goes.

Anyway, can I delete the 2.1 file off my SD card once it's installed on my phone? If so, what's the easiest way to do that.

View 5 Replies View Related

General :: Can't Delete Files From External Memory Card Through File Explorer

Sep 9, 2013

I have tried a lot of custom Roms. I'm on Neat ROM Lite now. Not sure which ROM changed my file access permission settings to cause this problem but I'm not able to delete any files from my external memory card. I was able to delete when I was on stock rom. The other problem is for a few apps I get an error message which says can't install on usb/sd card. I have posted this in another thread some time back but got no response.

This is what my file permission looks like.

I am able to delete when my fone is connected to PC via USB. So I don't think it has anything to do with a faulty sd card.

View 9 Replies View Related

Android : Way To Delete File When File Is Created By Another App

Sep 25, 2009

I have this problem. Two apps: app_a and service_s. Service_S creates file in /tmp. After create this file, service_s uses FileUtils.setPermission to change file mode to 666. Then app_a tries to delete this file. But I always failed when deleting. It seems the files are private. One application cannot delete files which another application creates. Is there any way to delete this file?

View 3 Replies View Related

Android :: Unable To Play File When Set Data Source To Sd Card File

Apr 13, 2009

I am trying to play file which is stored in SDCARD in emulator. I have Linux O/S. So i need to provide command in run configuration. I am providing following parameter.

-sdcard /usr/android/sdcard/mysdcard.iso -audio oss [i]

The following is my code to play file.

try { mMediaPlayer.setDataSource("/sdcard/test_cbr.mp3"); mMediaPlayer.prepare(); // Giving error. mMediaPlayer.start(); }

View 4 Replies View Related

Android :: Need File Manager / That Open An HTML File From SD Card?

Jun 18, 2010

How come this is the only file manager on the market (that I've found... I went through quite a few) that can open an HTML file from your SD card? I was a loyal user of Estrogen until I found that it couldn't.

View 2 Replies View Related

General :: ZIP / RAR File Successfully Copied To SD Card But End With Corrupted File (CRC)

Dec 23, 2013

I cant copy big compressed (.zip, .rar) to my sd card. The item successfully copied but end with corrupted file (crc). I tried to fix with some software on net. But the is no can fix instead showing no problem. HY5001

View 1 Replies View Related

Android :: Delete Only Content Of File In Java?

Apr 12, 2010

May i please know how can i delete the content of the file in java?

View 3 Replies View Related

Android :: How To Delete File From Internal Storage?

Aug 24, 2010

I have used the android internal storage to save a file for my application (using openFileOutput) but I would like to delete that file, is it possible and how?
thanks maxsap.

View 2 Replies View Related

Android :: Modifying - Rename/delete - Apk File

Oct 14, 2010

I have a rooted desire, but I have a troublesome app that won't update and I can't delete. I have seen others who have had the same problem, and a solution is to rename the app .apk.old and then redownload it, but I can't find a decent app to do this. I do have superuser permissions.

View 2 Replies View Related

Android :: Delete An Attached File After It Sends?

Feb 4, 2010

We are starting the e-mail intent of the user's choice (createChooser) and sending a zip file. This zip file is created right before the email sends, but we need to make sure the file is there until the email actually gets sent. Once the e-mail is sent, it would be nice to have this file deleted instead of sitting around eating SD card storage. Is this possible? (it can't be done in onActivityResult, e-mail intents don't actually finish, they cancel and thread the sending in a background service...so when onActivityResult gets called the e-mail might not have sent yet). Any ideas?

View 1 Replies View Related

Android : Delete Internal Image File?

Aug 10, 2010

What i want to do: delete an image file from the private internal storage in my app. I save images in internal storage so they are deleted on app uninstall.

I have successfully created and saved: code...

I have read on the android developer website that i must open private internal files using the openFileInput(...) method which returns an InputStream allowing me to read the contents, which i don't really care about - i just want to delete it.

can anyone point me in the right direction for deleting a file which is stored in internal storage?

View 1 Replies View Related

Android :: Delete SD Card Contents?

Jul 20, 2010

How to delete sd card contents?

View 2 Replies View Related

Android :: How To Delete A Named Preferences File In Droid?

Nov 5, 2010

I can create a new preferences file by calling Context.getSharedPreferences(String name, int mode), putting some values in the returned preferences' editor, and committing. However, I don't see an interface in the API to remove the created file when I no longer need it. I've tried Context.deleteFile(String name), passing in the same name argument from above, but that returns false, indicating the file wasn't actually deleted. I'm using MODE_PRIVATE, if that makes a difference. Browsing the source for context's implementation of the editor doesn't reveal any clues either, as far as I can tell. Any ideas? The background here is that I'm allowing my users to save copies of their "current" preferences so that they can restore previously saved settings. When they don't want those settings anymore, I want to remove the saved preferences file so it doesn't take up space. At the moment the best I can do is an edit().clear().commit on the file, which I believe will remove most of the contents. Not as good as delete, though.

View 1 Replies View Related

Android : How To Delete Image File In SD Cardafter Email Sent?

Sep 22, 2010

I want to delete image file in SD card after sending email...anybody knows,please give sample code for me.

View 2 Replies View Related

Android :: Delete Folders On Astro File Manager?

Sep 16, 2010

Downloaded Astro File Mgr based on people's reviews. Alot of different file folders on there and am wondering if I delete certain ones, will they permanently delete from the phone or just the program?

Things like:

com.espn.score_center
tmp
playgame site. etc

View 1 Replies View Related

Android :: How To Delete Directory From SD Card On Uninstall?

Jul 14, 2010

My application creates directory on SD card for syncronisation purpose. Tell me please, is there any way to delete this directory on uninstall? May be I could add some string to Manifest or catch "uninstall" event or something else?

View 4 Replies View Related

Android : Way To Delete Image File In External Storage After Email Sent?

Sep 20, 2010

I am storing image in External storage using MediaStore,and send email with attach that image,image saved and sent email with attachment is working fine,i want to delete that image in external storage after mail sent.anybody knows,please give sample code for me..

View 1 Replies View Related

Android :: Permission - Modify / Delete SD Card Contents

Jul 22, 2010

Does this mean that an app has access to internal AND sd card contents, or just the contents of the sd card?

View 3 Replies View Related

Android :: Delete - Change File / Folder Permissions On Remote Ftp Server

Sep 10, 2010

That allows me to delete files, change file/folder permissions on a remote ftp server.

View 3 Replies View Related

HTC Incredible :: Can I Delete The .zip File

Nov 6, 2010

So, after you flash a ROM from your SD card, can you delete the .zip file?

Same question with mods, themes, etc

View 1 Replies View Related

How To Delete Lines From File

Nov 19, 2012

I want to know how to delete lines from file?

View 1 Replies View Related

General :: How To Delete A File Using Adb

Mar 9, 2013

i pushed a file to my sd card using adb, but of course using the new cwm the sdcard folder is in... sdcard/0/ not just sdcard and now i cant delete the file i put on the sdcard? how do i delete this file!?

View 4 Replies View Related

HTC Desire :: Way To Delete File From Phone?

Nov 10, 2010

When I synced my phone to my PC it did it fine but all my music saved some how on the tab called "other" even though on my phone I have NO music files but it says according to the computer that 30gb is being used up is there a way of deleting the file from my phone if so how?

View 1 Replies View Related

General :: How To Delete WV File From Nexus 7

Oct 24, 2012

I have a Nexus7 (8gb) with a file headed "WV" and titled with a list of numbers in the "Personal Videos" file that does not appear on my desktop when I connect the Nexus. I now have four films (excluding the stray file) that I want to keep on the Nexus which are all under 1gb each, however my Nexus is now saying that I don't have enough memory to even download basic apps. I think this stray file may be to blame as I've checked the folder sizes using my desktop and I'm well within the 8gb capacity limit.The Nexus will not play the stray WV file; I get an error message saying "file cannot be played".

View 1 Replies View Related

General :: Delete File System

Dec 2, 2013

i have a thl w100 and i delete a folder on system, starting hence never got boot.works only via fastboot ou recovery. i can just copy the folder ? how ?

View 1 Replies View Related

HTC EVO 4G :: After Installing APK - Adequate To Delete Package File

Aug 6, 2010

General question for those in the "know". I'm trying to free up some space on my SD card (before I upgrade to a 32GB) and I was wondering---for apk's downloaded outside of the market..once you install that apk, can u delete the apk package file off your SD? Or will this cause problems to the overall application itself?

View 5 Replies View Related

HTC Droid Eris :: Delete A Downloaded PDF File?

May 19, 2010

How do you delete a downloaded PDF file?

View 2 Replies View Related

General :: Can't Delete File In Root Directory

Oct 11, 2012

but I can't delete some file in this directory ".ifs" folder Because. Yesterday I'm rooted my phone (This is a first time i root Android phone) i've explore alot of file in my phone

I found "logo.jpg" ( I Guest this is BOOT SCREEN PICTURE FILE ) in ".ifs folder" I Think if i replace with another JPG file. I can change BOOTSCREEN another Picture too.

when i copy and replace with new JPG file in this directory. I CAN'T replace it. But it create Duplicate file with "logo-Copy.jpg"

I do this 2 time but not work.

I can't delete or replace "logo.jpg" file in " mnt .ifs " Directory

that useless. So ! I want to delete "logo-Copy.jpg" or "logo-Copy (2).jpg" but I CANNOT DELETE IT TOO.

I'm use ROOT EXPLORER program SD Maid and ES EXPLORER it still not work ( SET mounted read and write )

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved