Creating subfolders on target device
-
I have an app running on a PDA which makes use of a number of subfolders. After my initial build and deploy I just created these folders manually on the device. Now I am looking to deploy the app onto more devices and want to have these folders created for me. Is there some way that I can do this as part of the initial deploy?
-
I have an app running on a PDA which makes use of a number of subfolders. After my initial build and deploy I just created these folders manually on the device. Now I am looking to deploy the app onto more devices and want to have these folders created for me. Is there some way that I can do this as part of the initial deploy?
sure you can. what i did was create a configuration file which does various initialization during the startup of the application. for example, the initialization function will check if the sub folder exist. if it is not, it will create the respective sub folders. is this what you're looking for?
-
sure you can. what i did was create a configuration file which does various initialization during the startup of the application. for example, the initialization function will check if the sub folder exist. if it is not, it will create the respective sub folders. is this what you're looking for?
Now you mention it I realise I have been a bit stupid. I don't need to copy the empty folders when I deploy the app. I will just add an initialisation function to my app and create them if they don't exists. Thanks for the pointer.