Is there an app for creating a folder structure on the iPhone out there?

I'm looking for an application to create folders (possibly password-protect them) on the iPhone, so I can add documents, PDFs, video clips etc to the phone and create subdivide them further in folders. There doesn't seem to be anything that does the right job in the app store. Is it not possible? Any feedback to help me understand would be appreciated.

It is not possible. You cannot create the folder structure you're speaking of and you cannot save files to your iPhone, even if you had folders.
There are no apps for folders or app organization. There are apps that allow you to access files from your desktop or the cloud from your iPhone. I use box.net. Dropbox and AirShare are others.

Similar Messages

  • Hey there, is there an app for I tunes available which displays the song lyrics. If not it would be a good idea

    Hey there, is there an app for I tunes available which displays the song lyrics. If not it would be a good idea

    If the lyrics aren't in the ID3 tags (track info) they won't display.
    https://www.macupdate.com/app/mac/25390/get-lyrical  THAT may or may not work. It's a pretty old link.

  • Why isn't there an app to create photo albums directly on an iPhone?

    The ability to create photo albums directly on the iPhone seems to be so obvious that I can only assume that the SDK doesn't allow for it, otherwise it'd be done. Am I missing something? Is it that a sync to the iTunes would break because the directory structure for the create-on-the-phone albums wont exist at the time of sync?
    Anyway, if ever there was low-hanging fruit, this is it. I've accumulated 600+ photos since '07, even after routine purges of cruft.

    iTunes doesn't handle the import of photos from a digital camera including from the iPhone's Camera Roll, which this would involve along with creating the albums or folders on your computer for the albums created on the iPhone from the iPhone's Camera Roll.
    The Camera Roll is for temporary storage as with any other digital camera and photos/videos in the Camera Roll can and should be imported by your computer as with any other digital camera. Although photos/videos in the iPhone's Camera Roll are included with the iPhone's backup, it isn't a good idea to depend on your iPhone alone for this which can be lost or stolen, or on your iPhone's backup which includes a significant amount of other data in the event a problem develops with the backup.
    Since photos/videos in the Camera Roll can and should be imported by your computer as with any other digital camera, you can create albums/folders for select photos on your computer to include photos imported from your iPhone's Camera Roll and for other photos on your computer for transfer to your iPhone via the iTunes sync/transfer process, which is a one way transfer process only - from your computer to your iPhone.

  • KM Repository Service for creating a folder structure

    Hi All,
       We have a requirement in KM. Whenever a folder is created inside a folder (say '/documents/testFolder') ... .. a couple of subFolders need to be created inside this new folder.
    For example, if the new folder's name being created is <i>parentFolder1</i> then, the following structure shud be created inside this folder.
    parentFolder1
      |--> subFolder1
                 |--> subFolder11
                 |--> subFolder12
      |--> subFolder2
                 |--> subFolder21
    I tried to implement a KM repository service::
    My Rep Service code::
    package com.test;
    import java.util.Collection;
    import java.util.Iterator;
    import com.sap.tc.logging.Location;
    import com.sapportals.config.fwk.CannotAccessConfigException;
    import com.sapportals.config.fwk.Configuration;
    import com.sapportals.config.fwk.IConfigClientContext;
    import com.sapportals.config.fwk.IConfigManager;
    import com.sapportals.config.fwk.IConfigPlugin;
    import com.sapportals.config.fwk.IMutableConfigurable;
    import com.sapportals.config.fwk.InitialConfigException;
    import com.sapportals.portal.security.usermanagement.UserManagementException;
    import com.sapportals.wcm.WcmException;
    import com.sapportals.wcm.crt.component.IReconfigurable;
    import com.sapportals.wcm.crt.component.StartupException;
    import com.sapportals.wcm.crt.configuration.ConfigurationException;
    import com.sapportals.wcm.crt.configuration.IConfiguration;
    import com.sapportals.wcm.repository.AccessDeniedException;
    import com.sapportals.wcm.repository.ICollection;
    import com.sapportals.wcm.repository.IResource;
    import com.sapportals.wcm.repository.NotSupportedException;
    import com.sapportals.wcm.repository.Property;
    import com.sapportals.wcm.repository.ResourceException;
    import com.sapportals.wcm.repository.manager.IRepositoryManager;
    import com.sapportals.wcm.repository.manager.IResourceEvent;
    import com.sapportals.wcm.repository.manager.IResourceEventReceiver;
    import com.sapportals.wcm.repository.manager.ResourceEvent;
    import com.sapportals.wcm.repository.service.AbstractRepositoryService;
    import com.sapportals.wcm.repository.service.ServiceNotAvailableException;
    import com.sapportals.wcm.util.config.ConfigCrutch;
    import com.sapportals.wcm.util.events.IEvent;
    // implements IMyNewRepositoryService interface
      Note: IReconfigurable and IResourceEventReceiver interfaces are optional
    public class MytestRepositoryService extends AbstractRepositoryService implements IReconfigurable, IResourceEventReceiver {
      private static final String TYPE = "com.test.MytestRepositoryService";
      private Collection repositoryManagers;
      private static final Location log = Location.getLocation(MytestRepositoryService.class);
      //variables
           private static final String PLUGIN_FOLDERCREATION_SERVICE = "/cm/repository_services";
           private static final String CONFIGCLASS_FOLDERCREATION_SERVICE = "com.test.MytestRepositoryService";
           private static final String readPlugins[] = { PLUGIN_FOLDERCREATION_SERVICE };
    public static final String PROP_MYFOLDER = "myFolder";
      public MytestRepositoryService() {
        super();
        // Do not add code here. Add it to startUpImpl() instead
      public String getServiceType() {
        return MytestRepositoryService.TYPE;
      protected void startUpImpl(Collection repositoryManagers) throws ConfigurationException, StartupException {
        // implement this method as follows:
        // - Verify configuration data
        // - Get references to other needed (global) services
        // - Check whether other repository services (this service depends on) are also assigned to the repository managers
        // - Usually the service registers itself for certain events at all repository managers
        try  {
        catch (Exception e) {
          throw new StartupException(e.getMessage(), e);
         this.repositoryManagers = repositoryManagers;
         Iterator it = repositoryManagers.iterator();
         while (it.hasNext()){
           try {
              addRepositoryAssignment((IRepositoryManager) it.next());
           } catch (ServiceNotAvailableException e) {
              e.printStackTrace();
      protected void shutDownImpl() {
         Iterator it = repositoryManagers.iterator();
         while (it.hasNext()){
           try {
              removeRepositoryAssignment((IRepositoryManager) it.next());
           } catch (WcmException e) {
              e.printStackTrace();
      protected void addRepositoryAssignment(IRepositoryManager mgr) throws ServiceNotAvailableException {
        // Implement this method: Usually the service registers itself for certain events at the repository manager.
         try {
    //       mgr.getEventBroker().register(this, ResourceEvent.ALL_TEMPLATE);
           mgr.getEventBroker().register(this, new ResourceEvent(ResourceEvent.CREATE_COLLECTION, null));
         } catch (WcmException e) {
           e.printStackTrace();
      protected void removeRepositoryAssignment(IRepositoryManager mgr) throws WcmException {
        // Implement this method: Usually the service must unregister itself as an event handler.
    //     mgr.getEventBroker().unregister(this, ResourceEvent.ALL_TEMPLATE);
         mgr.getEventBroker().unregister(this, new ResourceEvent(ResourceEvent.CREATE_COLLECTION, null));
      public void reconfigure(IConfiguration config) throws ConfigurationException {
        this.stateHandler.preReconfigure();
        // check the new configuration data
        try {
        catch (ConfigurationException ex) {
          this.stateHandler.postReconfigure(ex);
          throw ex;
        this.config = config;
        this.stateHandler.postReconfigure();
      public void received(IEvent event) {
         IResourceEvent myEvent = (IResourceEvent) event;
         IResource resource = (IResource) myEvent.getParameter();
         String repositoryPath = "";
         String parentPath = "";
                //get the configuration...
                try {
                       IConfigClientContext context = IConfigClientContext.createContext(ConfigCrutch.getConfigServiceUser());
                     IConfigManager cfg = Configuration.getInstance().getConfigManager(context);
                     IConfigPlugin configPlugin = cfg.getConfigPlugin(PLUGIN_FOLDERCREATION_SERVICE);
                     if (configPlugin != null) {
                          IMutableConfigurable[] configurables = configPlugin.getConfigurables(CONFIGCLASS_FOLDERCREATION_SERVICE, false);
                          for (int i = 0; i < configurables.length; i++) {
                               IMutableConfigurable configurable = configurables<i>;
                               if (configurable.getConfigClass().getName().equals(CONFIGCLASS_FOLDERCREATION_SERVICE)) {
                                    // now get the attribute value...
                                    repositoryPath = configurable.getPropertyValue(PROP_MYFOLDER);  //// "documents/parentFolder1"
              } catch (InitialConfigException e2) {
                   e2.printStackTrace();
              } catch (CannotAccessConfigException e2) {
                   e2.printStackTrace();
              } catch (UserManagementException e2) {
                   e2.printStackTrace();
              try {
                   parentPath = resource.getParentCollection().getRID().toString();
              } catch (AccessDeniedException e1) {
                   e1.printStackTrace();
              } catch (ResourceException e1) {
                   e1.printStackTrace();
              if(repositoryPath.equals(parentPath))
                   //write my code here
                   if (resource != null && (resource.isCollection()) )
                        ICollection parentFolder = (ICollection) resource;
                        try {
                             <b>parentFolder.createCollection("subFolder1",null);</b>
                        } catch (NotSupportedException e) {
                             e.printStackTrace();
                        } catch (AccessDeniedException e) {
                             e.printStackTrace();
                        } catch (ResourceException e) {
                             e.printStackTrace();
    <b>...MytestRepositoryService.co.xml:</b>
    - <Configurable configclass="com.test.MytestRepositoryService">
      <property name="name" value="com.test.MytestRepositoryService" />
      <property name="active" value="true" />
    <i>  <property name="myFolder" value="/documents/parentFolder1" /></i>
      <property name="description" />
      </Configurable>
    <b>...MytestRepositoryService.cc.xml:</b>
    - <ConfigClass name="com.test.MytestRepositoryService" extends="RepositoryService">
      <attribute name="class" type="class" constant="com.test.MytestRepositoryService" />
      </ConfigClass>
    Have i done it right?? Where am i going wrong??? Plz advice.
    I need to 'myFolder' as a configurable property in KM's <i>Content Management --> Repository Services</i> section.
    Thanks!
    Regards,
    SK.

    Hi,
    I haven't check your code but you know that you can archive the same without writing a portal componente by using the template feature. It is a simple customizing. See http://help.sap.com/saphelp_nw70/helpdata/en/55/83bd402b8d8031e10000000a1550b0/frameset.htm
    Best Regards
    Frank

  • What is the best app for creating and signing documents on the iPad?

    I am a home organizer and I am typically in a clients home when I need to have them sign a contract and I want to become a 'paperless' organizer.  I need to take my service agreement, enter their information, have them sign the document and then email it to both them and myself.  I don't want my 'template' altered in the process and I don't need to worry about saving the document since it will be in my inbox.  Can anyone suggest the best app to accomplish this?  Thank you in advance for all your help.

    You may want to look at a company called Docusign at:
    http://www.docusign.com
    My company uses this service to have customers sign all kinds of documents. I don't know what the cost is.

  • Hi, I have a ipad2. Is there a app to create wageslips for my staff

    Hi, I have a ipad2. Is there a app to create wageslips for my staff

    Luckily, you can't delete Safari.
    Try searching for it in Spotlight, if it shows up you can look throgh the home screens or folders and try to find it. If it doesn't show up, make sure Safari isn't disabled in Restrictions uner Settings > Restrictions.

  • HT2476 Why when clicking the right mouse button for my external hard drive there is no option for "create new folder"?

    Hi there. I'm having a problem with my external hard drive. Actually with only one of them (others seem to be ok...). The problem is that when clicking the right mouse button (or using other ways to do the same), in the drop-down list there isn't an option for "create new folder". Please, can anyone help with this issue?

    The drive is NTFS formated. Most probably that's the reason, but there is some info on the drive which I wouldn't like to loose. If there is a way to re-format the drive and save the files, that would be great. If there isn't such a way, then please, tell me how to re-format it. But bear in mind as well that I'm using Parellels and the drive is to be used in Mac and Win modes, both. Just to add some more info: my other drive is FAT32 formated and all seems to go well with it.

  • Best CC App for creating "animated" menu?

    Picture this on the home page of a website: a rectangular frame (size irrelevant for this question), empty inside, every 2 or 3 seconds a new graphic/slide appears (transitions) inside the frame, each has text describing a page in the site; when you click on one of the graphics/slides when it appears, it takes you to that page.
    I'm calling this an animated site menu. (You can call it whatever you like.) (Not being snarky. Just saying there could be different, better terminology.)
    I'm confident that something - some app in Adobe Creative Cloud - will allow me to create a menu like this and then embed it in a web page. This webpage will have other things, like the header graphic, so this menu won't be alone on the page.
    Flash? Edge Animate? Something!! I subscribe to the whole ACC shebang.
    I'm a WYSIWYG type of person, so I don't know code, and I don't know javascript.
    I haven't used a lot of the ACC apps, which is probably why I can't answer this question myself. But if someone can tell me which app (if there is one) will let me create this menu and then embed it in a web page I'd be forever grateful.
    Of course you can ask more questions. I know I've probably not described my project/outcome as clearly as I could have, but it's early, or late depending on how you look at it. (It's 6 am and I've been up all night.)
    Here's the "frame." The white space within the orange rectangle will be a sort of slideshow. Graphics/slides will change every 3 seconds or so. The frame will never change.

    You can create a slideshow in Edge Animate and put markers and actions on the relevant sections, then size it to fit within your imaginary frame. Otherwise I'm sure there's tons of "preview slideshow with page jump" jQuery widgets out there that can easily be integrated into Muse, Dreamweaver and so on.
    Mylenium

  • Are there any shortcuts for creating Value Object Classes?

    Hi,
    I'm using a Remote Object to connect to my server
    (pyAMF/Django). I'm getting stuck with the creation of Value Object
    Classes. It doesn't seem very DRY to have a class on my server
    representing the data model and then have to recreate that class
    and all its properties in my Flex app.
    Are there any shortcuts for creating client side VOs from
    server side data?
    I was thinking about declaring an empty VO class in Flex, and
    then dynamically assigning/casting my Proxy object to that class.
    It seems like that approach may cause problems for the Flex
    compiler though.
    Any hints?
    Thanks!

    quote:
    Originally posted by:
    tptackab
    Oh man, do I feel your pain. I'm not sure what middle-tier
    technology you're using, but I'm using Java (w/Spring) and I
    absolutely hate having to create and maintain two sets of VO (aka
    data transfer - DTO) object for Java and Flex.
    One thing that has helped me in that area is a free tool from
    Farata Systems called
    DTO2Fx. If you're using Java and Eclipse, it's a great time saver.
    You simply install a (very lightweight) Eclipse plugin, add a
    single annotation to your Java VO classes, and it automatically
    generates your Flex VOs. It even creates a base and extended
    version of each VO on the AS3 side so you can add code to the
    extended VO without fear of having your changes overwritten when it
    regenerates your Flex VOs.
    Here's a like to thier
    PDF that
    gives instructions and a download link. I had it up and running in
    my application in less than 30 minutes!
    I'm using Python/Django serverside (PYAMF is my AMF
    serializer).

  • Is there an app for BC sage line 50 integration

    Is there an app for BC sage line 50 integration so visitors can draw down invoices and elivery notes onto theire web area

    I am really confused, not at this stuff but at what your saying and not reading.
    I am not sure why your not reading things:
    You seem to think I am disagreeing with you on some things where I am not. your glossing over the things I am saying and I think you do not realise a number of things about open platform.
    In terms of SOAP TheBCMan, your actually incorrect on the authentication and just doing an app using username and password creates a big problem in the scope of an app.
    In terms of email and password - This has to be a user. So what your saying in terms of an app that may be on the app store etc - Someone has to create a user access or configure the app with their details before it will work. This is only viable for a one off app and custom solution for 1 site and either requiring a user slot for an app or needing one created.
    This option is not really viable if your creating a true open platform app and has those problems and overkill in terms of your code access.
    Developer reference
    "To use a site token instead of username/password, send an empty username field and the site token as the password. See example below."
    This works great, and you can see it is right there in the documentation. So there is a token.
    What this means for your app, and the reason this is here is that you can create an app through SOAP (and again, we got apps out there doing this! lol) and NOT require a username and password. You do not have to request it in your app, no manual setup, no need to have a user or ensure a user exists in an app, works with any user, changes to users in the admin etc.
    This means that the app can be sold viable to multiple people as a proper product, its less code and no use requirements.
    - Liam is confusing a REST API with the SOAP XML API.
    No, I know what is REST and what is SOAP, I also have been talking BC about open platform testing it etc, and for some time. Also helped with feedback on what is more important to turn into REST. BC plan to do so as I mentioned with those conversations.
    What you are not reading and understanding is what works in terms of open platform and between and app and 3rd party server data which is what I mentioned.
    - Even if you needed an authentication token (which you do not) it still would be possible to use Javascript with said token.
    Yep, as I mentioned, and Yes, in terms of viable apps on sale you need to use the authentication token, not username and password option - Thats a bad idea and not a viable selling app. And it is more straight forward with the authentication token, so your also over complicating things.
    - YOU CAN with Javascript in a BC app (admin area) access the full SOAP XML API. NOTE: You need to put usernames and passwords in the JavaScript so there is that security consideration.
    No need for username and password, and as I keep saying which your ignoring, I am 1. not talking about this in most of the bits I have said and 2. WE DO THIS, we were the first having this working in open platform (Which has been available to us through alpha as partner advisory board partners)
    - YOU CAN access the API with plain old HTML and JS from the front end of the site (in this case ONLY a 3rd party middle man server needed because I would never put login credentials client side).
    Of course, again Pretty offers things like email validation to more complex things, BUT to be secure this needs to be done properly with good authentication. Like any decent web application and their API access etc. Your handling personal data on BC sites in the CRM etc, not doing this properly would be lazy and stupid as I am sure you agree. But based on your comments you can give people the wrong idea about open platform and apps.
    - YOU ARE / I AM NOT breaking any rules or guidelines set out by BC or adobe because you are using plain old Javascript and HTML.
    Not true, I have done lots of things, and provided feedback on what I have done with BC, checked with them and been advised what is valid, what is not. When I was accessing lots of elements of the admin, as I mentioned already here along with other things.. this and other reasons were the reasons why BC introduced apps under a different domain and iframe so they could not access the parent frames dom objects etc.
    Because it is HTML and javascript it is also NOT true that you do not have to follow any guidelines or rules, yes you do. From HTML apps with other platforms like windows you can use javascript and HTML but there is authentication, methods etc. BC has already introduced this, apps are already sandboxed and the security features as I have already mentioned will be increased. Also, because these are built apps, you can not just go in and rip peoples code. Unlike a web app where the source is available, while you may view an app, if BC or the BC app store file code ripped from other apps, this breaks that apps copyright and you will be liable.
    It is early days for open platform but from ownership to security and data access they are very much in the scope of app and are/will and continue to be in that scope. Like I said, if your hacking Webapp API now outside of an app - BC do not want you to do it and will close the loop holes.
    Addition: As another note, You of course, can not just make an app and it will work. You have to register the app with BC, You have to declare your development site, note when the app is live so it can be deployed. Apps as well fall under security access limitations. You can not just deploy an app on a site run by another partner, neither you or the site owner can validate the app, only the other partner. This is to ensure that it is not dodgy.
    The BCappstore has spent a lot of time and money and have access API's via BC to authenticate and deploy apps properly as well. If nothing of what I was saying was correct, none of this would be in place.
    - Security is my number 1 focus on any project every time, I would not compromise security of any development work I did for easy of use or a cool idea. I would turn away work before compromising yours or my security on a project.
    That is great to here, I do not expect or consider any different from someone with the experience you have. You should fully well understand that despite it being Javascript and HTML or because of It as well in other regards, BC are working to introduce increased security to open platform as they already have from the first iterations. I am not sure why your arguing me on this if this is how you feel?
    I am still not sure what your having ago at me for.

  • Is there an app for the iPhone that allows you to syncronize alarm clocks or even set an alarm for you friend?

    Is there an app for the iPhone that allows you to syncronize alarm clocks or even set an alarm for you friend?
    Would appreciate if someone could help me with this. It doesn't have to be a free app.
    Thanks!

    Since there is no "drafts" folder on an iPhone for SMS's, not sure how something like that would work anyway. You can always copy to the notes app, then paste back yourself.

  • Is There An App For That?

    Just received my new iPhone 4S Friday.  This is my first iPhone.  I've been a Verizon customer for many years (GTE MobleNet) and this is the first time I been able to get an iPhone.  Two quick app questions.  I had the first Motorola Droid and installed an app that was a voice caller ID.  It worked very simply once it was installed it just worked.  When a call came in, it would speak the phone number or name, if the name was in my contacts.  I've search in the App store and don't find anything like this.  I'm somewhat surprised that a developer has not come with something simple like the Android app.  Any suggestions?  Next, is there any way to get "live" wallpapers?  Not important, but I rather liked them.  As an aside, all in all I do like the iPhone better than the Droid.  As with almost all Apple products it looks and feels like a work of art.  The iPhone 4 and the S is a quality built product.

    Hi,
    Have you tried the HP e-print app? I've included a link here on instructions for setup.
    There is also a HP All in One remote app for android that should give you the remote scan functionality you're after. I've included a link here
    "Although I work for HP, I'm speaking for myself and not on behalf of HP"
    "Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • Is there an app for the ipad that will allow you to access your mac.

    Is there an app for the ipad that will allow you to access your mac via wifi or cell network.

    Yep, two of the most popular apps are "LogMeIn Ignition" and "iTeleport." Check them out, they'll both set you back by about 30$ though.

  • Is there a way to print from ipad 4 to a non AirPrint printer? I have a Canon Pixma MP 620 wifi which works fine with my PC but I don't want to buy a new printer. Is there an app for this or adaptors which could work?   thank, Ric

    Is there a way to print from ipad 4 to a non AirPrint printer?
    I have a Canon Pixma MP 620 wifi which works fine with my PC but I don't want to buy a new printer.
    Is there an app for this or adaptors which could work? 
    Thank, Ric

    Printopia is another option but be aware that since these solutions effectively act as a print server and AirPrint receiver, they require a computer to be running on the same WiFi network.
    Canon also has a couple of apps in the App Store that might facilitate this on non-AirPrint printers. Check out...
    Canon Easy-PhotoPrint
    Canon Mobile Printing
    PIXMA Printing Solutions

  • Is there an app for "while you were out" messaging?

    Is there an app for "while you were out" messages?

    Perhaps this link might help. I did a quick Google search for what you were asking for. Forgive me if you've seen this before. Click Here
    I'm not a creative person, so I've never personally tried this.

Maybe you are looking for

  • Where is Process scheduler

    Hi, where can I see on which machine is installed Process scheduler ? Yes on Web interface (4 tiers) in process monitor it is indicated but for the moment it is wrong !! I looked for it in psappsrv.cfg but did not find. Is there any table other than

  • Compilation Error Code too large for Try block

    I am getting error while jsp compilation.           code too large for try statement.           Can anybody help me in this. I am using WL 8.1.4           Thanks in Advance           Himanshu

  • How can I change the Extras default?

    This feels like a really dumb question... But in PS CS6 when I open any files all of the extras are defaulting to be turned on - the grid, guides, etc... This is really annoying and I'm not sure why this started happening, how to get them to default

  • Can't update CC.

    I have downloaded previous versions of CC but since I updated my Mac to Yosemite I have not been able to download new updates.   I get a download error when trying to update my apps.  How do I fix this and get my apps to show up?

  • Font & box alignment issues in form building

    Hi There, I am trying to update our application page however I did not orginally build the page and I have very little experience with forms. What I need help with is: 1) How can I increase the font size for all field names thoughout the form e.g. Fi