Windows phone 8.1 ApplicationData.Current.LocalFolder Size limit? - windows-runtime

I am developing windows phone 8.1 runtime application, I need to store mp3 files in local folder of app, to avoid access to user.
But to do this Is there any size restrictions or file count restriction to store files on local storage.
any suggestion is appreciated.
Thanks

Related

Debugging on windows phone 8.1 : Access to temporary files

When debugging a Windows Phone 8.1 application (working in Visual Studio), with the phone connected to a PC, is there a way to browse and download files from the application's temporary file folder ( Windows.Storage.ApplicationData.currenttemporaryFolder) - or other application folders for that matter?
Updated to incorporate #Youval_Bronicki 's comment
There are several clients available:
Windows Phone Power Tools
ISO Store Spy
Isolated Storage Explorer tool for Windows Phone 8 (a command line tool).

How to access Windows Phone 8.1 system files

Is there any possibility how to get access to the WP8.1 system files (C:/), especially app files? There is a solution for WP 10, but I can not find any evidence about WP 8.1.

How to access universal shared files?

I have a universal windows store project. I want to access shared files which are accessible by both windows 8.1 and wp 8.1.
StorageFolder storageFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
StorageFile sampleFile = await storageFolder.GetFileAsync("text.txt");
I tried this but its not working. Location is wrong. Any idea what is the location of shared files ?
I think the term you're looking for is "roaming" rather than "shared".
If you want to share user data between the same app running on both Windows and Windows Phone then put the data in the ApplicationData.RoamingFolder. LocalFolder files are local to the current system. RoamingFolder files will roam across systems, including between the same app on Windows and Windows Phone.
See Guidelines for roaming app data and Accessing app data with the Windows Runtime
The "Shared" project is a compile time concept. Files in that project are merged with the platform specific projects at compile time. When building, Visual Studio uses all of the files from the target platform project plus all of the files in the Shared project and treats them as a single project. Content files in the Shared project will be included in the appx for both platforms and are available at runtime via the ms-appx: protocol or the Package.InstalledLocation folder.

Windows Phone 8 Wont load XAP files

Im trying to deploy XAP files to my Lumia 620. They work if i download them from the store but when i try and load another XAP from somewhere else, e.g. TimeMe or from Windows Phone Hub, the phone fails to show them. Any idea why?
The Windows Phone 8 OS architecture doesn't allow installation of non store applications, to support this they have restricted the loading of XAP files from other download sources.
In some countries Window Phone store comes with a option for installation from SD Card option, under this option you will be able to view XAP files on your storage media of phone, if you select that XAP file the store application will check for that application in the Windows Store and if it is a free app it will get installed otherwise it will ask to buy for a license of the app to install it.
The Windows Phone hub is for enterprise environment, where a company distributes its LOB apps to its employees, if you are able to access company hub app than you must be able to download and install the app. Even in this case the process is automated as in case of Windows Store and nowhere you will manually unpack the final XAP file.
Windows Phone will not let you install XAP files that are not certified in the WP Store. The only way you'll be able to install XAP files yourself is to either:
Download and install a WP Store signed XAP file. You can do this by going to an app's page on your computer, downloading the XAP file, transferring it to your SD card, and installing it through the Store app.
Download and install a unsigned XAP file that hasn't been through the WP Store yet. You can install these XAP files on a developer unlocked phone using the Application Deployment program included with the WP8 SDK.
The app TimeMe that you included as an example is an unsigned XAP file. You can "sideload" this app through the Application Deployment program.

How to view/edit system and application files on Windows Phone 8?

I'd like to explore the system files of some apps I've installed, but the program files aren't accessible when you plug in Windows Phone 8 via USB. I only see music, videos, ringtones, that kind of stuff.
Is there a way to view and edit the contents of the program files?