HTC Desire :: Checking Files - Deleting Files - Making Space
May 7, 2010
How do you go about checking what is stored on your phones memory and deleting content? For example I used dropbox and downloaded a 7mb photo onto my phone. Can't find it in the photos app or anywhere else. Going into SD & phone storage under settings doesn't do anything. It says I have 70mb available space under phone storage but you can't click on that to get any further info. Same goes for the SD card options.
View 1 Replies
Mar 19, 2009
I wrote an app that downloads web sites and all their assets (images/stylesheets) to "disk" and therefore stores lots of small files on the SD card.
Sometimes it fails to delete large amounts of files and afterward the file system is r/o. To analyze that behavior I tried to do the removal of the files by hand and then go from there. But that already failed.
localhost:~ mkamp$ adb -d shell mount [.. some mounts ..] /dev/block/mmcblk0p1 /sdcard vfat rw,dirsync,nosuid,nodev,noexec,uid=1000,gid=1000,fmask=0711,dmask=0700,codepage=cp437,iocharset=iso8859-1,utf8 0 0 --> R/W
Last login: Wed Mar 18 19:41:49 on ttys005 localhost:~ mkamp$ adb -d shell rm /sdcard/newsrob/a* [.. minutes of silent deletes ..] rm failed for /sdcard/newsrob/a2aade03616c28b30_113.png, Read-only file system localhost:~ mkamp$
localhost:~ mkamp$ adb -d shell mount [.. some mounts ..] /dev/block/mmcblk0p1 /sdcard vfat ro,dirsync,nosuid,nodev,noexec,uid=1000,gid=1000,fmask=0711,dmask=0700,codepage=cp437,iocharset=iso8859-1,utf8 0 0 --> R/O now
The log contained nothing but the usual gc output and random WiFi status changed mumbo jumbo.
Anybody else seeing this behavior?
There were 6.500 files in that directory. Might that be the problem? I don't access the files with queries, I always have the exact name.
View 5 Replies
View Related
Sep 7, 2010
I've added some icons (png) files to a folder on the SD Card. They are visible in EStrong, but not to other applications. They only become available when I power on/off. Is there a way to make the available? As I am toying with many icon sets and generally playing, it's annoying having to reset the phone everytime to see anything.
View 4 Replies
View Related
Jun 18, 2010
If I uninstall an app i paid for because I have no space and don't use it as much am i able to re-download it for free later one for example a week or month later. It didn't cost much but its that fact that I already paid for it so why should I pay again.
View 3 Replies
View Related
Jan 20, 2010
I have a game the allows the user to save the game in a file. I have a new update coming out the will make the previous saved games not work. Is the any way to delete all the files that my program created?
I have been serializing the games and saving them like this:
ObjectOutputStream os = new ObjectOutputStream(openFileOutput(gameName + ".sav", 0)); os.writeObject(gameObject);
I know I can go through the list of games and do something like this
for(GameName name : gameList) { deleteFile(name + ".sav");
View 5 Replies
View Related
Jul 2, 2010
i've downloaded some pdf files to my storage card. can't seem to find a way to delete them.
View 3 Replies
View Related
Oct 14, 2010
Can't delete a jpg file which is showing in mediascape under recently viewed - my photos
View 5 Replies
View Related
Oct 15, 2010
I want to delete all the files on the internal sd card so that my phone will be like straight from the factory. Are the system files on my phone (GT-I9000) protected from deletion even though it is rooted and would my my phone still boot up?
View 2 Replies
View Related
Mar 23, 2010
I read my manual regarding deleting files from the sd card. I am not sure if i understand it though. Can i safely delete files through my pc's file manager (while tethered) rather than through the phone it self, files such as pictures and music? And what about the folders left behind from downloaded apps? Can i simply delete those while tethered?
View 6 Replies
View Related
Dec 10, 2009
Currently I am having an issue with my SD card storage.
It started when iMusic told me i was out of space, on a 4gig SD card when i had mayb 5 songs on the phone!
So i went to my astro manager file manager to delete some files just to see. i keep getting "error deleting files" on anything i try to delte, ive taken the card out rebooted etc etc.
It makes me think the card may be locked? as its not even letting me save anything to it now.
Should i just root the dang thing to avoid problems like this?
I can delete files by going into the generic "music" app and long touching the song and selecting delete.
View 2 Replies
View Related
May 22, 2010
Anyone notice this or figure out why? I am trying to delete PDF files off the SD card and Astro just says "error deleting file."
View 5 Replies
View Related
Jul 25, 2010
I have an unrooted Evo and I'm really low on internal space and don't want to root...if I could delete the system update files like "com.htc 2.1-update 1" and "Android System 2.1-update1", that would help to free up about 23mb of space...can I uninstall them or would that revert the system to the pre-updated state?
View 2 Replies
View Related
Feb 4, 2014
How can you delete files from Quickoffice? No options at all. Using DROID Maxx
View 10 Replies
View Related
Jul 9, 2010
I am working on an Android application which is supposed to play videos over HTTP on Android devices. Before we setup a server to host the video files just wanted a few things clarified: As per the developer documentation, Android supports .mp4 and .3gp container formats for video.
The audio-video codec used for our media files is H.263(video) and AAC LC (Audio). I did a little experiment and passed URL of one of the video files to the MediaPlayer class and got the following error: Command PLAYER_INIT completed with an error or info PVMFErrContentInvalidForProgressivePlayback.
From the docs, I came to know that for progressive playback, the video's index (e.g moov atom) should be at the start of the file. How do we make our videos Android-ready? What are the different considerations that we need to make?
View 4 Replies
View Related
Feb 17, 2010
I am creating a game using the irrlicht c++ 3D graphics engine port to android platform. The graphics engine is written in c++. I need to be able to load meshes and textures etc from c++ code. My current plan is to place all the game asset files in either the res/raw directory or the assets directory then on start-up copy these files to the sdcard so they are accessible from the irrlicht c++ code.Is this the best way to make the game media files accessible from c++?
View 2 Replies
View Related
Jul 20, 2010
I'm developing for the Android platform.
My app creates a temp file with a simple call to:
FileOutputStream fos = openFileOutput("MY_TEMP.TXT",Mode);
It works fine because I can write to it and read it normally.
The problem is that when I exit from the app I want to delete this file. I used:
File f = new File(System.getProperty("user.dir"),"MY_TEMP.TXT");
f.delete()
But it always returns false and the file is not deleted.
I have tried
File f = new File("MY_TEMP.TXT");
f.delete();
And it does not work either.
View 4 Replies
View Related
Aug 3, 2013
I wanted to show a picture to a friend of mine. Opened my gallery > ehm, what is going on here? > there were no photos images anymore.
First I thought that the gallery app got some problemes, rebooted my phone, still the same. Looked up the folders with Solid Explorer, well ... all files got definitely deleted.
I searched for this here on xda and google. Well, all I found out was that it could be ROM related, or that it could have something to do with RomManager (haven't installed it though). The curious thing is that the *.jpg and *.mp4 files got deleted from all folders and subfolders, not only from DCIM and even from the sd card.I'm not here for any recovery attempts, have done this already
Well this is not all. I've got some *.avi files on my phone (internal and external storage). Theses files were deleted too. BUT not at the same day as the other media files (*.jpg and *.mp4).
So this is the pre story. Now I wanted to know what can I do to discover what is causing this problem, because what's next? Is my phone deleting all my files in a few days?For me it seems like a script that is searching the whole device for media files and deleting them. (malicious?)My thoughts were:to smali all applications and try to find out if a app is causing this to analyze logcats.Well, These options seems to be very long-lasting,
I haven't isntalled any apps or updates the last two weeks so I think there are no problems with apps and therefore will not list them. phone is deleting media files two days ago it deleted *jpg and *.mp4 files from internal and external storage and from all folders (not only DCIM) today it deleted *.avi files from internal and external storage could it be a malicious script that is crawling my phone for those files?
View 1 Replies
View Related
Sep 4, 2010
Some time ago...I estimate a week at most, I received an error when simply saving a file from my Browser, stating there was not enough space to do so. Knowing my phone had mre than adequate space, I presumed it was just an error with my browser.
Trying again with a different internet browser, I was met again with the same dilema. To make matters worse, I cannot permanently delete picture files from the default viewer on my phone. Queerily, I can delete them, only to have the pictures return hours later. To make my situation more unusual; Upon viewing the SD card mounted on my laptop, I can move, add & delete any form of files with ease. Even saving/deleting other files using different apps (Videobox, for example) gives me no hassle whatsoever.
One solution I'm willing, but at the same time reluctant to try is to reset my phone entirely to it's factory default setting (prior to backing up all of my SD card's data, of course)
View 1 Replies
View Related
Mar 23, 2012
I'm searching app for wiping (not just delete) files and free space for Android.
View 4 Replies
View Related
Feb 13, 2012
I deleted system files etc... while attempting to revert back to stock ROM. I cannot boot into TWRP nor communicate over USB.
View 1 Replies
View Related
Jul 12, 2010
This is the error,"phone storage is full.Delete some files to free space." I have at least 7 gigs of free space.
View 33 Replies
View Related
Jul 13, 2010
Spent hour and half on phone with Verizon and HTC. No luck. Phone says Phone storage is full. Delete some files to free up space.
View 4 Replies
View Related
Apr 22, 2013
I have a Galaxy S3, and I noticed that my thumbnails cache was absolutely massive. It grew to 9.6 GB in size. Using Root Explorer, I deleted the .thumbdata3 file and replaced it with a blank file. I noticed that my free space remained 550 MB. I rebooted the device, and it was still reporting only 550 MB free, but there is no sign of the 9.6 GB file anymore. The new .thumbdata3 file reports that it is 0 kb. Next, I tried deleting the .thumbnails folder entirely, thinking maybe the old file was still there someplace. I created a new .thumbnails folder, and created a new .thumbdata3 folder inside of it. After deleting the 9.6 GB thumb file, and the approximately 750 MB worth of photos that were in .thumbnails, my device still shows that only 550 MB is free.
How can this be? I searched the entire device using Root Explorer for any files or folders containing ".thumb," and the 9.6 GB file is definitely gone.
My device details:
Model: SCH-I535
Android version: 4.0.4
Build number: SynergyROM 1.7
View 2 Replies
View Related
Feb 26, 2010
My .mail folder contains a bunch of files I can't identify what they are or what they are used for. I have moved ALL THE FILES AND TOKENS to a temp directory and my Here seems to be working fine with the .mail folder empty. I think these files have something to do with email I receive and delete. Has anyone ever cleared out this directory to conserve storage space? Are these useless files and can be deleted?
View 7 Replies
View Related
Nov 6, 2010
Sometimes I'm browsing the web and... One more download... And then oops! Another one...Then I realised that those downloads are still in my download list and there's no option to COMPLETELY remove them. Also, where do I clean browser's temporary files?
View 3 Replies
View Related
Apr 4, 2010
I have a Samsung Galaxy I7500 using android 1.5. I extended my phone with a 16GB microSD. I copied a big music collection (around 800 files) into a folder on this SD. Now the problem is that the music player can't find all the files.
I know that there are several threads about android not finding music. The answers are usually that the library hasn't yet been updated or that the ID3 tags are not correct.
I have checked both.
Btw. I can play the files using ASTRO.
In my opinion it seems as if android can't build up a library with too many entries. If I rename the files or put them into different folders, songs disappear and reappear quite randomly.
Do you have any solutions? Is there a music player which doesn't use the native music players index of files?
View 3 Replies
View Related
Apr 24, 2009
Can anybody advice what is the recommended directory to store files generated by your application: audio files, video files or some images.
If the phone contains SD card, it is clear that files should be saved there, but if there is no any external storage. where would you recommend to save to?
View 2 Replies
View Related
Oct 21, 2010
I cant send any files(pictures,mp3 files) through bluetooth.
Can anyone give some solution on how it works?
View 2 Replies
View Related
Nov 4, 2010
I am working on an android app. Where i need to parse some plist files from assets folder. I do understand how to use assets in android but now problem is that file sizes are more than 1MB and so android gives error Data Exceeds UNCOMPRESS_DATA_MAX (2183588 vs 1048576). how to access such larger files from assets? Also I cant reduce a file into small buffers because i am just sending it to "DocumentBuilder.parse(in)" as a whole so can not use buffer. The error is on line: Document doc = db.parse(in).
View 1 Replies
View Related
Nov 17, 2009
I uploaded about 50 pictures from iPhoto (using a Mac) just to see what they looked like and then later formatted the Droid's SD card, so the pictures were no longer there.
Now, if I mount the Droid via USB and view the file structure there is a folder named /albumthumbs which contains 50 files, presumably for the 50 pictures a had on the SD card.
To me, these file, unless linking to actual photos stored on the SD card, take up extra space in the phone's memory (not worried about the SD card). I wonder if I can safely delete them (just the files...not the folder)?
View 2 Replies
View Related