Any file managers that support folder merging? - Nexus 7 Themes and Apps

in slim file manager or rom toolbox, if i copy a folder to a location that already has a folder with that same name, both apps will just append a number to the end of the copied folder. ex: if i copy folder "New" to a location that already has a folder called "New", then it'll copy the new folder over but will rename it as "New-2".
instead, i would like it to just merge the files from the old location to the new location and/or overwrite the old files instead of created another folder. i know i can do this just within windows, but windows is slow and it's faster to transfer stuff around on the sdcard from the phone itself.

Es file explorer.... Allows me to merge folders. Copy/cut, paste.
As for the items in the folders, it will overwrite if they have the same name.
Sent from my Nexus 7 using XDA Premium HD app

cnstarz said:
in slim file manager or rom toolbox, if i copy a folder to a location that already has a folder with that same name, both apps will just append a number to the end of the copied folder. ex: if i copy folder "New" to a location that already has a folder called "New", then it'll copy the new folder over but will rename it as "New-2".
instead, i would like it to just merge the files from the old location to the new location and/or overwrite the old files instead of created another folder. i know i can do this just within windows, but windows is slow and it's faster to transfer stuff around on the sdcard from the phone itself.
Click to expand...
Click to collapse
I really like the app Solid Explorer (Play Store link). It has a great interface and has the functionality you requested. It is a paid app, but extremely worth its money.

wingmanjd said:
I really like the app Solid Explorer (Play Store link). It has a great interface and has the functionality you requested. It is a paid app, but extremely worth its money.
Click to expand...
Click to collapse
Lol thanks for that. I thought es was the cats ass till I gave solid a try. They have a trial, I ended up getting the full version.
Cheers

Related

save as apk?

hi not sure if this is the right place for this or not but i've got a question on apk files
I've made some changes to an apk file but not sure how to compress it back to an apk file.
is it as simple as compressing as a zip then renaming it to apk?
take care
denti said:
hi not sure if this is the right place for this or not but i've got a question on apk files
I've made some changes to an apk file but not sure how to compress it back to an apk file.
is it as simple as compressing as a zip then renaming it to apk?
take care
Click to expand...
Click to collapse
Use 7zip (7z.exe to be exact)
Copy it to a folder make a subfolder inside,
Put ur apk contents in subfolder
Open notepad, copy and paste these 3 lines
Save as script.bat in folder with 7z.exe
cd subfoldername
..\7z.exe -tzip archivename.apk "*" -mx0
Exit
Change subfoldername to name of subfolder to the name of subfolder u created ofc lmao
And archive name to sign.. mx0 is best for loadin, mx9 is compression, use signapk to sign if its not a system file
If the "..\7z" don't wotk 4 u use full path in quotes, example
"%userprofile%\desktop\foldername"
Is the same as: (vista)
"C:\users\username\desktop\foldername"
And: (xp)
C:\documents and settings\username\desktop\foldername"
Or use apk manager lol I prefermymethod personally, n fyi, googles ur friend
Should get to know it
thank you doug.
i did google it but found bunch of different programs and thought that there might be a simpler way of doing it rather than getting a program just to compress
denti said:
thank you doug.
i did google it but found bunch of different programs and thought that there might be a simpler way of doing it rather than getting a program just to compress
Click to expand...
Click to collapse
Ye no worries just hope it helped sorry if the post seemed rushed had like 5min left 2 my break when I origionally replyed lmao n this methods rather simple cuz when used correct its more or less drag n drop n run, zip is generated in folder with 7z.exe n 7z performs flawlessly
APKs are basically a zip file with an MD5 signature embedded in them. There are apk generators on market if you copy directory to sdcard is prolly easiest to start with specially with the processing power of this phone.
In Windows compressed folders work fine if you just enable viewing file extensions and change between zip and apk
or hold left shift key as you right click apk file in windows.
Now click open with...
and choose browse for application
Choose your favorite zip app or windows compressed folders
Next to last check always use box so checkmark is visible
Finally click OK
Now no need to modify extensions
Sent from my SGH-T989 using Xparent Green Tapatalk

ADB help - how to push an entire directory?

Alright. I need help with this and Google can't help me. I need to recursively (i.e. all of the content in the directory) move an entire folder from Windows to my internal sd-card but no matter what I do, I just can't get it to work.
I now there's a way, somehow.
EDIT: Pitch-in: The sd-card is mounted as /mnt/sdcard/ right?
what about just zipping it? i dont think adb can do that easily
Lets say you have a folder called Wallpapers on your PC use the code below (assumes you copied Wallpapers folder to android-sdk\platform-tools):
Code:
adb push Wallpapers /sdcard/Wallpapers/
If you don't specify the destination folder (Wallpapers) on the sdcard then it will place the contents of the folder on your sdcard. No need for mnt in the destination.
Edit: unsure of how this will behave with subdirectories within the folder you're trying to push. You might have to push each subdirectory separately.
CMNein said:
Lets say you have a folder called Wallpapers on your PC use the code below (assumes you copied Wallpapers folder to android-sdk\platform-tools):
Code:
adb push Wallpapers /sdcard/Wallpapers/
If you don't specify the destination folder (Wallpapers) on the sdcard then it will place the contents of the folder on your sdcard. No need for mnt in the destination.
Edit: unsure of how this will behave with subdirectories within the folder you're trying to push. You might have to push each subdirectory separately.
Click to expand...
Click to collapse
Working for me as I type. I don't know about the sub-directories as I just put everything into one folder and will move them to their new home once they finish transferring. Up until now, I've been moving everything individually. I didn't know you could move folders so this is awesome. Save me a lot of typing lol.
gurusportscanada said:
Working for me as I type. I don't know about the sub-directories as I just put everything into one folder and will move them to their new home once they finish transferring. Up until now, I've been moving everything individually. I didn't know you could move folders so this is awesome. Save me a lot of typing lol.
Click to expand...
Click to collapse
a thanks is enough, no need to necrobump a thread over a YEAR old, just to say it works.
I honestly just zip the file with all directories on my computer than adb it over. Extract with root explorer and move then delete zip file. Easy and simple
Sent from my Nexus 7 using Tapatalk 2
/me bashes his head against the wall.
beekay201 said:
/me bashes his head against the wall.
Click to expand...
Click to collapse
when you do a folder you also do all it's sub folders
patalo said:
I honestly just zip the file with all directories on my computer than adb it over. Extract with root explorer and move then delete zip file. Easy and simple
Sent from my Nexus 7 using Tapatalk 2
Click to expand...
Click to collapse
Im stupid.... This is best idea lol, and so obvious...

Manual backup of XAPs, Favorites. Download RAR, Cab, 7z files. Full ZIP files

Hi everyone,
I'm posting a method today which i use to backup my XAP files and favorites. I hope that they will help others too and I'm posting some other tips too which i gathered around from the web and XDA. I will be constantly updating this post.
Most of the tips I've provided here are only for Fully Unlocked Phones
Backup .XAP files downloaded from Zune Marketplace
Access your phone's files using any File manager FileBrowser by ego zheng, Unique File Manager by Mohsen Unique Or TouchXplorer by julien Schapman.
Both FileBrowser and Unique file manager can open XAP files but TouchXplorer will throw an exception.
Open FileBrowser and Goto /My documents/Zune/PimentoCache/Lib/
There should be numerically named folders containing cached XAP files but with .ZMZ extension which will look like this
app0b792c7c-14dc-df11-a844.zmz Copy those files to another folder and rename the extension ZMZ to XAP. You should keep in mind that PimentoCache folder gets cleared after every few days. So you have to copy those files as soon as you've downloaded from the marketplace.
You MUST have XAPdeployer by Ultrashot installed for the following trick to work.
If you want to open ZMZ files in the FileBrowser to see which ones you are copying or renaming. Launch Registry Editor by Julien Schapman open HKEY_CLASSES_ROOT create a new key .ZMZ open .ZMZ and create a new String value "Default" enter "xapdeployerfile" in the value and tap OK. Now you can open ZMZ files in the file browser.
Backup XAP files downloaded with Bazaar App
Using Phone's file manager Or Windows Explorer on computer Goto
Application\Data\9daf0fc-a0ee-4cfc-905a-cc812d678a35\Data\IsolatedStorage
all homebrew XAPs downloaded from Bazaar will be in this folder.
Backup XAP files downloaded with wPhoManager
If you download files with wPhoManager from W.I.N.C.O marketplace all the XAPs downloaded will be in
Applications\Data\8A011F29-D5A3-4942-B865-71198AAB94AE\Data\IsolatedStorage
Screen Goes Blank during Incoming/Outgoing calls
I had this problem sometime ago when my HD7 fell real hard and started giving these problems. So I searched the web and found this solution from some website. If you are having problems (Blank screen and inaccessible phone) while incoming/outgoing calls it has to do with the proximity sensor. It goes out of alignment and that results in the black screen during the call. While the call is active, since the screen is essentially turned off by the proximity sensor, I can’t use the keypad or even hang up the call!
The fix is to press down hard on the area where the proximity sensor is. It’s located at the top of the screen – pretty much where the HTC logo is. Just press hard on that area and that should move the sensor back into place.
Backup Internet explorer's Favorites
Browse to /Windows/Favourites and copy all the content to a folder of your choice. Put them back in after you've reset your phone or installed a new firmware. You can also use IE fav Backup by Sh4d0w86 that's also a pretty good app for doing this task.
Saved Office mobile files OR copy Documents from computer to phone
All your Word, Excel, Powerpoint files you saved on your phone are stored in My documents. If you have files in your computer and you want them on your phone. Just copy all those to My documents and they will be in your files list.
Record incoming/outgoing calls complete with environmental effects
This trick does not even need any sort of unlock. Call any number on speaker and press the camera button Switch to Video Recording mode and tap Record. Your call will be recorded in a video use VirtualDub(or any other audio extraction software) to extract the audio and Audacity to reduce environmental effects if there are any.
ZIP files
By default downloaded ZIP file's content (Which can open by default in Windows Phone 7)is in Applications/Volatile/ZipView/(This folder gets deleted when you close the ZIP file, So you have to keep the ZIP file open until you've copied). but the limitation is that you have to open each file individually. But if you want to download the complete file without any content limitation. Do the following method :-
»Open your file manager on your phone OR windows explorer on PC.
»Goto \Windows\Profiles\Guest\Temporary Internet Files\
»There should be folders with names like 9FADAF33, Q110E4PZ, U0GWIYEF and U2QKY63D(exact names can differ)
»Your downloaded ZIP file will be in one of these four folders.
»Copy/Paste downloaded ZIP file to another location where you keep your files.
This method is helpful if you are downloading ZIP files which contains DLLs, EXE or any other format files which WP7 cannot open.
Download WinRar, CAB, 7Z files
Windows phone 7 does not recognize these file types so it will not download these files if you want to. With the following tip you can download these files to your phone.
»Start your phone's Registry Editor and tap HKEY_CLASSES_ROOT
»Create three new keys .Rar, .cab, .7z
»Open each key and create String "Default" with "Zipfile" as a value
»Now you can download Winrar, 7Zip, and CAB files in Internet Explorer.
If any of the above tips helps u out a little please hit thanx or reply if you have any question or suggestion.
I will add shortly:
xap handler = new registry key HKCR/.zmz and string value: Default -xapfile
unique file manager extract zipfile
Download WinRar, CAB, 7Z files
Windows phone 7 does not recognize these file types so it will not download these files if you want to. With the following tip you can download these files to your phone.
»Start your phone's Registry Editor and tap HKEY_CLASSES_ROOT
»Create three new keys .Rar, .cab, .7z
»Open each key and create String "Default" with "Zipfile" as a value
»Now you can download Winrar, 7Zip, and CAB files in Internet Explorer.
If any of the above tips helps u out a little please hit thanx or reply if you have any question or suggestion.[/QUOTE]
Thanks for the valuable info.
Great job
It did and did not work
The rar file can be downloaded, but wp7 cannot read it or recognize it, it shows corrupted file or unreadable file by the system.
It seems we need rar code to be native so we will be to open rar files.
meover said:
Download WinRar, CAB, 7Z files
Windows phone 7 does not recognize these file types so it will not download these files if you want to. With the following tip you can download these files to your phone.
»Start your phone's Registry Editor and tap HKEY_CLASSES_ROOT
»Create three new keys .Rar, .cab, .7z
»Open each key and create String "Default" with "Zipfile" as a value
»Now you can download Winrar, 7Zip, and CAB files in Internet Explorer.
If any of the above tips helps u out a little please hit thanx or reply if you have any question or suggestion.
Click to expand...
Click to collapse
Thanks for the valuable info.
Great job
It did and did not work
The rar file can be downloaded, but wp7 cannot read it or recognize it, it shows corrupted file or unreadable file by the system.
It seems we need rar code to be native so we will be to open rar files.
Click to expand...
Click to collapse
The reason why i posted that registry key wasn't to open RAR files but to download them on your phone so you can copy that file to your computer. Because sometimes the content you wanna download is in RAR format.
jashd7 said:
Thanks for the valuable info.
Great job
It did and did not work
The rar file can be downloaded, but wp7 cannot read it or recognize it, it shows corrupted file or unreadable file by the system.
It seems we need rar code to be native so we will be to open rar files.
Click to expand...
Click to collapse
The reason why i posted that registry key wasn't to open RAR files but to download them on your phone so you can copy that file to your computer. Because sometimes the content you wanna download is in RAR format[/QUOTE]
thanks again, really great job.
I see.
But I hope we can:
Open rar file and extract content like PDF, media file, etc.
I really need 2 task:
Open PDF file within the browser.
Can print the PDF over wireless printer.
they are not accomplished missions yet
meover said:
The reason why i posted that registry key wasn't to open RAR files but to download them on your phone so you can copy that file to your computer. Because sometimes the content you wanna download is in RAR format
Click to expand...
Click to collapse
thanks again, really great job.
I see.
But I hope we can:
Open rar file and extract content like PDF, media file, etc.
I really need 2 task:
Open PDF file within the browser.
Can print the PDF over wireless printer.
they are not accomplished missions yet [/QUOTE]
i hope too but WP7 is closed like a fort, it's not developer friendly and it's really hard and time consuming to do modifications or add new features. You can put some minor things here and there but nothing too big.
Hello!
I copied and moved some .zmz file in my pc.
I renamed them in .xap and tried to deploy them into my HTC 7 Pro with Dynamics 1.21 ROM.
I tried with WPH Xap Deployer, wf Phone Tools and Phone7Deployer, but I only got errors (failed to open the manifest file. This may not be a valid xap).
I suppose this should be related to app encription...
So now, also without Reinstaller working, if we make whatever can delete the apps from the phone, we will have to pass through the marketplace, with app list opened on Zune on our pc... :crying:
Otherwise, a way could be:
1) to know an app's guid, i.e. with cache clearer
2) use a storage explorer on pc, like windows phone device manager and go to
application/Install/(application guid);
3) copy that folder into pc
4) right click on the folder to create a zip file
5) change the extension of the zip file to xap (you can do it at the end, there
some softwares for file renaming...)
A long way if you have some tenth apps installed...
lordmago said:
Hello!
I copied and moved some .zmz file in my pc.
I renamed them in .xap and tried to deploy them into my HTC 7 Pro with Dynamics 1.21 ROM.
I tried with WPH Xap Deployer, wf Phone Tools and Phone7Deployer, but I only got errors (failed to open the manifest file. This may not be a valid xap).
I suppose this should be related to app encription...
So now, also without Reinstaller working, if we make whatever can delete the apps from the phone, we will have to pass through the marketplace, with app list opened on Zune on our pc... :crying:
Otherwise, a way could be:
1) to know an app's guid, i.e. with cache clearer
2) use a storage explorer on pc, like windows phone device manager and go to
application/Install/(application guid);
3) copy that folder into pc
4) right click on the folder to create a zip file
5) change the extension of the zip file to xap (you can do it at the end, there
some softwares for file renaming...)
A long way if you have some tenth apps installed...
Click to expand...
Click to collapse
You are right about apps encryption. Microsoft recently encrypted all their XAPs on marketplace.
jashd7 said:
You are right about apps encryption. Microsoft recently encrypted all their XAPs on marketplace.
Click to expand...
Click to collapse
Nonetheless, if we've got encrypted XAPs specific to our devices, we ought to be able to install them on the device somehow from within the device. We'd just need to initiate the install routine. Does anyone know how to do this?
Thanks
What I am interested in, is a way to take my games save states and back them up. I'm sick of restarting Angery Birds every time I flash my phone. lol Rest of this is super interesting stuff though.
TheXev said:
What I am interested in, is a way to take my games save states and back them up. I'm sick of restarting Angery Birds every time I flash my phone. lol Rest of this is super interesting stuff though.
Click to expand...
Click to collapse
Did you try to look into the Angry Birds folders in your device if it saves something,
for example using FileBrowser (http://forum.xda-developers.com/showthread.php?t=1544399) or Webserver from GoodDayToDie?
If there's something there, you should be able to copy your states in your pc and put them back in your device, I think...
TheXev said:
What I am interested in, is a way to take my games save states and back them up. I'm sick of restarting Angery Birds every time I flash my phone. lol Rest of this is super interesting stuff though.
Click to expand...
Click to collapse
You can use Program Manager by ego Zheng to backup your angry birds settings. You just have to put your saved settings in your angry birds folder after you've flashed.
Here's the link to program manager
http://forum.xda-developers.com/showthread.php?t=1922454
Your saved XAP files will be in Applications\Data\12345678-87bf-4d87-a529-0dff41efd592\Data\IsolatedStore\Xap
Your Data backups will be in \Applications\Data\12345678-87bf-4d87-a529-0dff41efd592\Data\IsolatedStore\Data

Compress files

Hello,
I have an idea to make an App, and I have one problem, I have to upload one folder that its content have a lot of files and folders in order to upload to skydrive. I think that it is more easy if I compress the main folder and then upload this compressed file. How Can I compress this folder?
Thanks you
cansado2930 said:
Hello,
I have an idea to make an App, and I have one problem, I have to upload one folder that its content have a lot of files and folders in order to upload to skydrive. I think that it is more easy if I compress the main folder and then upload this compressed file. How Can I compress this folder?
Thanks you
Click to expand...
Click to collapse
have you tried zip...
dazza9075 said:
have you tried zip...
Click to expand...
Click to collapse
Hi dazza9075,
Thanks by your answer, but I thought the same, but I don't know how to use this, Can you explain about use of zip? Or, Where can I find information about this?
Thank you again
cansado2930 said:
Hi dazza9075,
Thanks by your answer, but I thought the same, but I don't know how to use this, Can you explain about use of zip? Or, Where can I find information about this?
Thank you again
Click to expand...
Click to collapse
+1 for the idea... I also want a program like winrar which also available in symbian phones.plz any dev note this and develop an app for compressing and decompressing files...
WP will unzip zip files, make the sip, copy to sky drive, open via IE, it will then give you the contents of the zip,, it can't compress files to zip though. Technically there would be little point since docs auto sync to sky drive, and WP doesnt support anything else or file system access, but its doable for unlocked devices I suppose
Sent from my SGH-i937 using XDA Windows Phone 7 App
dazza9075 said:
WP will unzip zip files, make the sip, copy to sky drive, open via IE, it will then give you the contents of the zip,, it can't compress files to zip though. Technically there would be little point since docs auto sync to sky drive, and WP doesnt support anything else or file system access, but its doable for unlocked devices I suppose
Sent from my SGH-i937 using XDA Windows Phone 7 App
Click to expand...
Click to collapse
Hi dazza9075,
Thank you by answer, I had thought that it isn't possible, because I want to compress a folder of other app that her content are a lot of files and folders. So, Do some api exist in order to compress this? Or, Have I upload files and folders one by one?
Thank you again
I think it's completely possible
sombody names Ego zheng,wrote an application. It is program manager.
u can repack your apps,and save apps data in a single .zip file.
i think he can do this
contact him for this idea.
Leo_zodiac said:
I think it's completely possible
sombody names Ego zheng,wrote an application. It is program manager.
u can repack your apps,and save apps data in a single .zip file.
i think he can do this
contact him for this idea.
Click to expand...
Click to collapse
its doable so long as you have interop unlock and WP tools installed and setup
if the Windows Phone SDK is missing Zip functionality (it may be called "DEFLATE" which is the name of the compression algorithm; ZIP is the file format) then there are surely libraries for various compression methods which you could download. Alternatively, if you don't mind using native code homebrew, there are compression libraries (zlib, etc.) that can be compiled to a native DLL, and you could then access them via COM.
i add this to new version of my file manager and now you can compress and decompress file and folders
Hi!
Thanks you by your answer, they have been very useful.
Thanks you
Hi again,
I'm using the lib "SharpZipLib" and I have problems with it. Can you explain how use it? or what is the problema? I probe in a program of pc and it working correctly but in app for my mobile say it crashed when it go to create the file, this is code:
FileStream fsOut = File.Create("Copia.zip"); //here is the problema at this moment
ZipOutputStream zipStream = new ZipOutputStream(fsOut);
zipStream.SetLevel(3);
zipStream.Password = null;
........
It can't create the file.
Thank you again
Generally speaking, Silverlight (which WP7 uses for apps) doesn't even allow normal file access, so you might just be getting a MethodAccessException on File.Create. If not, that still won't work without elevated privileges. The default working directory for a program is it's install directory. For a WP7 app, that's going to be either its install location (\Applications\Install\<GUID>\Install) or the Windows directory where the taskhost.exe file lives (\Windows\). Trying to create a file without specifying full path will crete it relative to the working directory, which in this case means creating it in the working directory directly (no path specified). Since the app can't write to the working directory, you'll get an error from that too.
To get around the permissions error, use the IsolatedStore folder (\Applications\Data\<GUID>\Data\IsolatedStore\) or run the app with full permissions ("Trusted" or root unlocked).

[Q] How to set up gallary

I read... alot! And every time I download an EPub book it puts the cover art into my gallary as a new folder. I have over 200 in there now! Is there a way to put them into a separate folder and keep the main gallary folder for just my photos - still have them work as far as displaying the art and download to the new folder?? Or perhaps have my photos go to a specific folder?
rogerperk said:
I read... alot! And every time I download an EPub book it puts the cover art into my gallary as a new folder. I have over 200 in there now! Is there a way to put them into a separate folder and keep the main gallary folder for just my photos - still have them work as far as displaying the art and download to the new folder?? Or perhaps have my photos go to a specific folder?
Click to expand...
Click to collapse
Create a .nomedia file in your ebook folder and it will skip that folder for scans.
I had to do that for quite a few locations to skip them.
intelliriffer said:
Create a .nomedia file in your ebook folder and it will skip that folder for scans.
I had to do that for quite a few locations to skip them.
Click to expand...
Click to collapse
I appreciate it but how would I go about doing that? Not a complete newb, just a partial one.
I use an app called es file explorer for all sort of file/folder related tasks.
I browse to the folder on my internal or external card and hit new to create file in that folder and name that file .nomedia
intelliriffer said:
I use an app called es file explorer for all sort of file/folder related tasks.
I browse to the folder on my internal or external card and hit new to create file in that folder and name that file .nomedia
Click to expand...
Click to collapse
Tried that but it doesn't seem to be working. I"m searching the device for other places to do this with and see if that works.
That worked! Thanks alot!

Categories

Resources