File Browsing App? Need FTP, SMB, Dropbox, & OneDrive...

Hey all, what do you use for file browsing / management. I need something that supports FTP, SMB, Dropbox, & One Drive. FileBrowser works great but doesn't support FTP. I've been messing around with Files United and it's great but not robust. I'm having a lot of error messages and issues with it. Any suggestions for one single all inclusive file management system?
I work in the construction industry so I'm often opening PDFs with Bluebeam Revu, and Microsoft docs with the newer Microsoft apps.
EDIT: The more connectivity options the better, for example box.com would be nice also. I work across multiple projects so the more connection options the better. Also, not sure if it's possible as I have yet to see any file management app that can, but access to multiple dropbox accounts would be a huge bonus!!

I use File Manager, and although it does not supot FTP its a pretty good manager. With several cloud options. 
https://itunes.apple.com/us/app/file-manager-free/id479295290?mt=8
However, a quick google search of the App store revealed this:
iUnarchive Lite - Archive and File Manager with support for Dropbox, Box, Skydrive, SugarSync, WebDAV en FTP
https://itunes.apple.com/us/app/iunarchive-lite-archive-file/id380663019?mt=8

Similar Messages

  • File Browser Capibilities needed from CS gone in CS2

    Someone help me to figure out how to adape the Bridge to work like File Browser did in CS. I need to be able to see the image large (larger thumbnail), see the MetaData, then click on the photo to edit it or batch process it. All this disappearing behind Photoshop or lossing the metadata if you make the bridge smaller does not work. Can the bridge be made to stay in Photoshop contained like the File Browser did, so that it can be edited? Or is there a way to get File Browser back? Sorry, I'm not too impressed with this Bridge.
    Thanks!
    N Hodgkins

    >Bridge is a totally seperate app that takes way to long to load!
    It should load in a few seconds if setup correctly. You don't say if you're Windows or Mac, which doesn't help when we try to assist you with Troubleshooting.
    Is Bridge trying to cache files in a folder? If you you need to let it finish.
    Do you have antivirus software running in background? If so try temporarily disabling it to see if Bridge starts quicker.
    If Windows and your starting from a Shortcut then the first tip contained in the FAQ has been known to help, see:
    Ian Lyons, "++ Adobe Bridge - Frequently Asked Questions ++" #1, 20 May 2005 6:40 am

  • Why doesn't apple offer a viewer/file browser for iCloud Drive?

    Why doesn't apple offer a viewer/file browser for iCloud Drive?
    Dropbox, Microsoft’s OneDrive, and Google Drive all have viewer apps that let you see and manage what’s in the drive.  The only way you can do that with iCloud Drive is through a web browser.  Very frustrating and backward.

    I found a possible band-aid for our problem:
    1) On iOS 8 Device, go to Safari / iCloud.com
    2) Once you get to iCloud.com, you'll notice it won't give you the option to log in.
    3) Tap on the URL bar (this should bring up your bookmarks bar and Frequently Visited Sites)
    4) Tap, Hold, and Slide your finger down on that section (this will reveal two options: (1) Add to Favorites, and (2) Request Desktop Site
    5) Tap Request Desktop Site
    Log in as usual, and you can now access iCloud Drive with your PDFs and other documents like any other computer.
    I too am disappointed as I was looking forward to view PDF's shared between my Macbook and my iPad, but I think this should work until Apple comes out with a solution.

  • Transfer a file from App Server to a FTP site.

    Hi, Abapers.
    I need your help. Probably, this topic has already been posted in a similar way, but we need an answer to solve our problem.
    We have to sent a PDF file from a directory of our app server (AIX) to a FTP directory... which would the FM sequence we should use to goal it?
    Best Regards.

    Hi Santiago,
    create fm to send file from APP server to FTP site.
    if you want to Post file from desktop to Appl use Transaction - CG3Y
    if you want to Post file from Appl to Desktop use Transaction - CG3Z
    copy the code below....
    *  Author: Prabhudas                            Date:  02/21/2006  *
    *  Name: Z_FTP_FILE_TO_SERVER                                          *
    *  Title: FTP File on R/3 Application Server to External Server        *
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(DEST_HOST) TYPE  C
    *"     REFERENCE(DEST_USER) TYPE  C
    *"     REFERENCE(DEST_PASSWORD) TYPE  C
    *"     REFERENCE(DEST_PATH) TYPE  C
    *"     REFERENCE(SOURCE_PATH) TYPE  C
    *"     REFERENCE(FILE) TYPE  C
    *"     REFERENCE(BINARY) TYPE  CHAR1 OPTIONAL
    *"     REFERENCE(REMOVE_FILE) TYPE  CHAR1 OPTIONAL
    *"  TABLES
    *"      FTP_SESSION STRUCTURE  ZMSG_TEXT OPTIONAL
    *"  EXCEPTIONS
    *"      CANNOT_CONNECT
    *"      SOURCE_PATH_UNKNOWN
    *"      DEST_PATH_UNKNOWN
    *"      TRANSFER_FAILED
    *"      COMMAND_FAILED
      DATA: w_password     TYPE zftppassword,
            w_length       TYPE i,
            w_key          TYPE i                  VALUE 26101957,
            w_handle       TYPE i,
            w_command(500) TYPE c.
      REFRESH ftp_session.
    * Scramble password (new Unicode-compliant routine)
      w_length = STRLEN( dest_password ).
      CALL FUNCTION 'HTTP_SCRAMBLE'
        EXPORTING
          SOURCE      = dest_password
          sourcelen   = w_length
          key         = w_key
        IMPORTING
          destination = w_password.
    * Connect to FTP destination (DEST_HOST)
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          user            = dest_user
          password        = w_password
          host            = dest_host
          rfc_destination = 'SAPFTPA'
        IMPORTING
          handle          = w_handle
        EXCEPTIONS
          not_connected   = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
          RAISING cannot_connect.
      ENDIF.
    * Optionally, specify binary file transfer
      IF binary = 'X'.
        w_command = 'bin'.
        CALL FUNCTION 'FTP_COMMAND'
          EXPORTING
            handle        = w_handle
            command       = w_command
          TABLES
            data          = ftp_session
          EXCEPTIONS
            command_error = 1
            tcpip_error   = 2.
        IF sy-subrc <> 0.
          CONCATENATE 'FTP command failed:' w_command
            INTO w_command SEPARATED BY space.
          MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
              WITH w_command
              RAISING command_failed.
        ENDIF.
      ENDIF.
    * Navigate to source directory
      CONCATENATE 'lcd' source_path INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING source_path_unknown.
      ENDIF.
    * Navigate to destination directory
      CONCATENATE 'cd' dest_path INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING dest_path_unknown.
      ENDIF.
    * Transfer file
      CONCATENATE 'put' file INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING transfer_failed.
      ENDIF.
    * Disconnect from destination host
      CALL FUNCTION 'FTP_DISCONNECT'
        EXPORTING
          handle = w_handle.
    * Optionally, remove file from source directory
      IF remove_file = 'X'.
       CONCATENATE source_path '/' file INTO w_command.
      CONCATENATE 'rm' w_command INTO w_command SEPARATED BY space.
       OPEN DATASET '/dev/null' FOR OUTPUT FILTER w_command.
       CLOSE DATASET '/dev/null'.
    ENDIF.
    Regards,
    Prabhudas

  • Newb needs help opening file browser and getting full file name and path.

    Ok, so I'm a TOTAL newb here, but I have managed to get it to open a file browser but all I can seem to get it to do is give me the NAME of the selected file *eg. selectedFile.name* I also need the path of the file as in C:\example\file.mp3.
    The program I'm making plays an MP3 of your choice at a certain time, like an alarm clock. But I got tired of entering the file path of the MP3 EACH time so I wanted to have a browse feature.
    Ideas... help... thanks...
    Nicholas

    you'll need to use air to get the path.

  • File browser or folder view in gallery and music app?

    Hello together,
    is in Firefox OS no file browser and no way to show my pictures and my music in a folder view? I have sorted all my pictures and music in folders but in the gallery and the music app everything is totally unsorted or show under "unknown artist". :-/

    Hi Alex008,
    Thanks for using Firefox OS. There is a file browser in the marketplace called Explorer that let's you see your files in the folders. See https://marketplace.firefox.com/search?q=explorer
    Let me know if this isn't what you were looking for.
    Regards,
    Michelle Luna

  • Submit SharePoint app to Office app store, this app need to add file to hosted web style library

    I want to submit SharePoint app to Office app store, I road the "Validation policies for the apps submitted to the Office Store : "http://msdn.microsoft.com/en-us/library/office/jj220035(v=office.15) 
    and the  Point 5.9 mention: 
    "Your app for SharePoint cannot request full-control permission. Apps for SharePoint that request full-control permissions are not accepted in the Office Store."
    I need to know if this point applied on site collection, web or List. because my app need to add files to hosted web, and it seem there is bug with "write permission" then I should use "full-control permission" on list. 
    any suggested solution will highly appreciated
    thank you 

    Below configuration will be enough for adding files. Yes 'Full control' can't be placed on Office store.
    <AppPermissionRequests>
    <AppPermissionRequest Scope="http://sharepoint/content/sitecollection/web" Right="Write"/>
    <AppPermissionRequest Scope="http://sharepoint/content/sitecollection/web/list" Right="Write"/>
    </AppPermissionRequests>
    See this : App permissions in SharePoint 2013 (See video)
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Need to transfer all my photos from iPhoto app in my computer to another one, which files do I need to copy?

    Need to transfer all my photos from iPhoto app in my computer to another one, which files do I need to copy?

    You need to find your iPhoto Library and copy this package to your other computer.
    By default the library will be called iPhoto Libary.photolibrary and located in your Pictures folder. YOu will recognize it by the typical "fan of pictures" icon. The color of the icon wil depend on the iPhoto version. What is your version of iPhoto?

  • So when will Apple release their own iOS file browser built into the OS? No third parties apps....

    iOS devices should have a native file brower app built into the OS... (It's hard to believe that Apple iOS devices can't read files from a Apple Time Capsule, right out of the box.) A iOS Finder should be preinstalled on all iOS devices. This is one feature that all other OS such as Android, BlackBerry, and Windows Mobile have preinstalled on their own devices. So when will Apple release their own iOS file browser built into the OS? Please do not over look this request...

    "This is one feature that all other OS such as Android, BlackBerry and Windows Mobile have pre-installed. . ."
    Which is why those devices don't outsell; not as popular; or as desirable as Apple's iDevices.

  • Since updating to the latest version of iTunes (11) I cannot find the files that I need to export from apps on my iPhone to my Desktop PC

    Since updating to the latest version of iTunes (11) I cannot find the files that I need to export from apps on my iPhone to my Desktop PC

    Follow these instructions to completely remove Apple software
    http://support.apple.com/kb/HT1923
    Then use free Ccleaner to repeatly repair your registry until it's fixed.
    http://www.piriform.com/ccleaner/download/standard
    download iTunes again from Apple.
    Your content will remain.

  • Do I need FTP server to poll a file

    Hi,
    i am trying to do file to file scenario. I have technical system which is different than XI system. in this case my technical system has to be FTP server to send a file or not necessarily.
    I am trying to poll file from windows machine to XI system and send back the file again to windows system.
    I added my windows machine as technical system and created bunisess system.
    In C, i have my file.
    But, it is not polling at all. What to give source and target directory while configuring adapters.
    thanks,
    Srinivas

    Hi,
    i am trying to do file to file scenario. I have technical system which is different than XI system. in this case my technical system has to be FTP server to send a file or not necessarily.
    Yes, you need FTP connection in order to access file on 3rd system( Not XI)
    You need to create FTP  Username / password connection to your windows system. Then you can specify this in File adapter with FTP connection details.
    Also check the FTP root directory for username which you are going to use to access Windows system and specify path accordingly.
    Hope this will help.
    Nilesh

  • CS4 apps are VERY slow to open Windows file browser with File Open or File Save As commands

    We are running CS4 on Windows 7 with all available updates installed.   Photoshop and the other CS4 applications are VERY slow to open a Windows file browsing window to select files when File Open or File Save As menu options are run -- it can take as long as a minute or two for the window to open.  Once the window opens and a file is selected, then opening or saving the file is very quick.  The location of the default directory, whether it is on a local drive or a network drive, makes no difference.  Any suggestions as to what the problem might be?

    Raphman02
    The link that I posted earlier is off.  Read this one
    http://support.microsoft.com/kb/2501584.  I discovered in my network that the MS Office File Validation Patch made excel crawl when opening over the network though nothing else changed. At the time I was opening Excel on Office 2003.
    You can manually turn this off by editing the registry and tunring it off.  Going forward I skipped the patch to keep my sanity.  Not sure if this is the same as your issue, but the support article will go into detail how to either have Fix it
    clear the issue or change the proper registry keys.
    Hope this helps

  • Sloooow file browsing....

    Hi all
    Just got a new Mac Pro (YAY!)....
    One thing kind of bugging me is how slow it is when displaying the contents of folders.
    I keep my windows in columns view. When I click on a folder, there is a lag of 2 or 3 full seconds before the contents of the folder displays in the next column. This happens for every level of the folder contents and so file browsing is very slow and tedious.
    It was not like this on my old Macbook under Tiger, and I am wondering if other people have this experience or if it is unique to my system.
    Possible culprit.... I have my files on a 1TB drive, which I did not partition because I have been led to believe it is not necessary with new drive technology.
    Running 10.5.2, 10GB ram, system and apps are running on a 320GB internal, files are on a 1TB internal, and 1TB internal for Time Machine.
    Anyone have any thoughts that might be helpful?
    Thanks!!!!
    V Silly
    http://www.bittybox.com
    http://www.myspace.com/bittyboxdotcom

    I use File Manager, and although it does not supot FTP its a pretty good manager. With several cloud options. 
    https://itunes.apple.com/us/app/file-manager-free/id479295290?mt=8
    However, a quick google search of the App store revealed this:
    iUnarchive Lite - Archive and File Manager with support for Dropbox, Box, Skydrive, SugarSync, WebDAV en FTP
    https://itunes.apple.com/us/app/iunarchive-lite-archive-file/id380663019?mt=8

  • Is there a way to see a file browser on iCloud? It says my account is filled up to 5G already and I can't imagine what it moved over to there that was that big.

    Is there a way to see a file browser on iCloud? It says my account is filled up to 5G already and I can't imagine what it moved over to there that was that big.
    I'm wondering if it moved my rhapsody music to the cloud (which is pointless) so I shut off 'document' sharing in case that's the problem, but it's still saying I'm at 5G right now.
    When I go to icloud.com all I see is the dumb app icons, with no clue as to what's taking up that disk space.
    btw, I did not sync photos from the get-go.
    A file browser? please? I need to see my cloud.
    sigh

    Have you enabled Automatic Downloads on all of your devices? This would download all of the books to all of your devices when you download on any device - as long as you are using the same Apple ID and iTunes account on all of your devices.
    Go to Settings>Store>Automatic Downloads>Books>On. When you download a book on one iDevice, it will download to all of your iDevices. This will only work for downloads moving forward from the moment that you turn the setting on. You will have to download the previously purchased books to all of your other devices.
    With iCloud, you can start reading the book on one device and then pickup where you left off on another device.

  • File Browse moving files

    So, my DBA has issues with me storing PDFs in the database as a BLOB. Instead, they want to move the file to a shared drive location and store the link to the file. They think that the 300 or so PDFs loaded per year will make the database get really slow and hard to partition.
    Is this possible in APEX? Does anyone have any examples?
    For example:
    User creates PDF on a local drive (C:/temp/somefile.pdf).
    I use the file browse for them to go find it. When the form is submitted, the system needs to pick up the file and copy it to //someserver/someshare/.../somefile.pdf and store the link as the new file name to the file.
    Oh, and I still need to be able to display the PDF from within the application.
    Any ideas?
    Thank you!

    Hi,
    I know this does not answer your question, but look at this Ask Tom post:
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:1011065100346196442
    Here we have thousands of files uploaded to the database by Apex apps and it does not make the DB slow (well in fact it is quite slow but for other reasons...)
    Luis

Maybe you are looking for

  • Using animated GIF as JButton icon

    Hi, I am trying to use an animated gif as an icon in a JButton. Everything works as it should except the animation is static!! Screenshots and code are at: http://www.beammicrosystems.com/Java/JButton.html Anyone got any good ideas? Regards, Andrew

  • Change Color For HBox  in Sapui5

    Hi all, How the change the background color of HBox dynamically (Red,Green) depending on Status(0,1). Please Help me on this. Thanks Sathish

  • Adding Tab screen to MIGO_TR transaction

    Hi Friends, I have requirement like to create a tab screen in MIGO_TR transaction with a input field using BADI  * u201Cmb_migo_badi"* can anyone help how to achieve this. Is it possible to create a tab screen in a standard sap program using BADI. Pl

  • Instance Name Change

    Is it possible to rename the instance of timesten without uninstalling TT software and installing with a new instance? I want to avoid uninstall and install of TT Software but change the instance name. Regards, Priya

  • TS1646 I already changing my payment informion and everything fine but i still cannot bay a gems from clash of clans

    I already changing my payment informion and everything fine but i still cannot bay a gems from clash of clans