User portal file browsing

So I'm feeling out my user portal and I want a way for my people to download software.  I had previously set up a Sharepoint library and made an iFrame for users to view it on.  Works great in that the sharepoint frame recognizes their AD account so no additional login.  I have the issue of duplication of files.  I already have a share with all my software neatly organized and to duplicate this on a sharepoint library seems a waste.
I could just list all my software and then link each name to the file but that seems inefficient especially since I'll update software regularly.  Not to mention I want to do the same thing with some 
So can anyone suggest a way for a normal user to browse the available folder/file structure and download said files? 
This topic first appeared in the Spiceworks Community

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

  • Par file com.sap.portal.support.browse.par overwritten - where is original?

    This is a bit embarrassing to admit but I had some serious finger trouble here and managed to deploy a new par file with name com.sap.portal.support.browse.par. This of course fu..ed up my browsing functionality in the support area and I need to deploy the original.
    I tried to find it in my production portal, but I can't seem to be able to find the right location to download it from. Can anyone help.
    I am on portal 7.0 sps 15.
    Henning

    Hi,
    You can find com.sap.portal.support.browse.par par at ROOT/WEB-INF/deployment/temp on the portal production server. Then you can deploy it to the development system.
    Regards,
    Nikhil

  • File Browsing for Freaks (i.e. 'advanced users')

    I'm currently searching a simple, lightweight, shell-based file-browser. I'm not searching a file-manager, too much bloat in it. I don't want to manage my files through a file-manager, I prefer to use cp, mv, vi/nano etc..
    I just want a file-browser which I can use to browse directories on my system through an ncurses-based interface.
    It should just show me the content of a directory and give me a one-line CLI-Prompt at the bottom as the Midnight Commander does, so I can execute my commands (cp, mv, vi/nano etc..) directly from the file-browser
    Do you know ncmpc? Or cplay?
    I'm searching a file-browser with an interface which resembles the one ncmpc and/or cplay uses.
    If you know something like that what I'm searching, drop me a line.
    Last edited by azerty (2007-09-04 10:24:34)

    Gilneas wrote:Why not just run an mc-like ls after cd'ing?
    I use this: ls -l -a --color=auto -h -F --group-directories-first
    Which I have aliased to just l
    I played around with different tools in the last days and I found out some things which can be useful.
    Possibility 1:
    '~$: ls -l -a --color=auto -h -F --group-directories-first | w3m'
    In this case w3m is used as pager for displaying a directory's content.
    But one could also use 'more', 'less' or simply '~$: ls -l -a --color=auto -h -F --group-directories-first' without any pager.
    Possibility 2:
    '~$: w3m <path/to/dir>'
    By default this gives you a full dual panel view with browse-able ('click-able') directories, content listing and viewing (not editing AFAIK) the content of text files.
    You're even able to customize the panel-, format- and sorting-type by simply using 3 selection fields at the top.
    I think using w3m as directory pager and file viewer *could* be a compromise between the blank ls and a more powerful file browser.
    Possibility 3:
    '~$: lynx <path/to/dir>'
    More powerful than w3m with (at least) the same customization possibilities.
    Additionally you can specify a default editor (e.g. Vi, Nano etc.) in the lynx config, after this you're able to select a text file and [ENTER] to open your preferred editor and view/modify the selected file. Modify it, save, quit the editor and continue browsing your system with lynx. Lynx' capabilities go even further: You can create, modify (move/rename) and delete directories.
    Amazing, don't you think?
    Unix and its abilities to combine different tools for a specific task never ceases to amaze me.
    Last edited by azerty (2007-09-04 10:35:16)

  • How to implement the File Browser Window in Webdynpro

    Hello,
    The Scenario is as follows.
    I need to read a file.
    If the file does the exists then the user should be prompted with a file browser window to choose the location of the file.
    Please can you let me know how this can be implemented.
    Regards,
    Vaishali.

    Vaishali,
    See [this tutorial|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0e10426-77ca-2910-7eb5-d7d8982cb83f]. I believe this is the best that you can do for now.
    Vishwas.

  • Submitting a user's file to an applet.

    Hi,
    I am fairly new to Java, but I have spent a large part of this year learning about and using Java to write a program for biochemists, to allow them to study a particular class of enzymes. I have used Java because I wanted to enable to program to be used by people via the internet, and I wanted there to be a good graphical interface. Java Applets have enabled me to do this. Furthermore, some of the computation has to be done via the server, because the Applet interfaces to a Prolog program, and again this was easy with Java, because I was able to do this using (HTTP interface) Servlets.
    There is one major drawback to this solution. The users will often develop 'models' of their enzyme, which they will want to save to a file, and reload at a later stage. However, Applets cannot access the user's file system, which means I had to find another way to achieve this. At the moment, loading (and saving) the models is done in a two-step process. A form, embedded in the web page below the Applet, is used to submit the file to a Servlet, which saves the contents of the file to a session object. Then, the user clicks on a button in the Applet, which connects to another Servlet, and the file is read from the session object, and transmitted back to the Applet. Saving a file is just the reverse of this process.
    Quite apart from the fact that it is a nuisance to do this transaction in two steps, it causes problems when the user doesn't have cookies turned on. I can always alert people to the fact that they need to turn cookies on (or use URL encoding), but it still means that there are two steps to the process.
    Does anyone have any suggestions how I might be able to write this sequence so that the user can load or save a file in only one step, instead of two? Someone suggested that I use sockets, but from the reading that I have done, it seems that Servlets are simply a convenient way to use sockets. So, it seems using sockets would just be a more difficult and time-consuming way to achieve the same end.
    Any suggestions on this topic would be gratefully appreciated.
    Regards,
    Sarah

    Thanks so much for your prompt reply.
    Every time the user performs an action in the applet that connects to one of the servlets, I extend the lifetime of their session object. That way, when they submit a file to the server, it is available for them to access it for a couple of hours, before the session object will time out (unless the user accesses the server in the meantime, which resets the lifetime of the session to 2hrs).
    The problem isn't actually passing the file from the servlet to the applet (or vice versa) - I already use IO streams to do this. The problem is can I get the file from the HTML form to the applet in one step?
    As far as I can see, if the connection to the servlet comes from the html form, then the response goes back to the browser. Similarly, if the request comes from the applet, the response goes back to the applet. What I am wondering is, is there a way to force communication from a servlet to the applet when the initial connection to the servlet has come from the browser (i.e. from the HTML form)?

  • Possible to set the Created_by column value for File Browse?

    I'm using database account authentication and then a user gets to upload a file. Then my stored procedure reads the file. I was investigating a problem, happened to search the apex_workspace_files view and noticed the created_by column is always set to APEX_PUBLIC_USER for the files my users upload. Is there some way I can set that value when they log in, so I can track who actually did the upload?
    Thanks,
    Stew

    Dimitri,
    I was just using the standard File Browse item, so getting the blob from the workspace view. Though I've seen notes here about loading to your own table, what I had seemed to work (and was done) fairly well. There were just these little features I wanted to use...
    Thanks for the suggestion.
    Dave, I'm not sure which stored procedure you're suggesting I add the apex_custom_auth.get_username value to? I hoped that the internal File Browse routine would pick up the get_username value automatically instead of the application definition Public User value.
    Thanks,
    Stew

  • Open Cursor Issue because of file browse Item - Is this a Bug in APEX 3.2

    Hi All,
    I am using file browse Item to upload file into the database at two places in my application, but it seems whenever I am submitting those two pages, with file path or without file path, its opening an cursor which remains open after that, because of this open cursor count in the application is getting exceeding every time.
    For testing this I have made an dummy page containing just file browse item and submit button, and still it is increasing the open cursor count.
    Is this a bug in Apex file browse item or there is some other way to handle this.
    Please kindly help me in the above issue as this is affecting the production application.
    Thanks & Regards
    Sanjay
    Edited by: user11204334 on Dec 5, 2010 9:57 PM
    Edited by: user11204334 on Dec 5, 2010 9:58 PM

    Hi,
    One observation, Apex is switching the Session ID after one got killed ? I was working on Apex page with browse Item to test open cursor count,
    after killing the SID (227) on which the open cursor count was getting increase, it APEX automatically switches to new SID(149) for that session.
    Now the problem is even if I have two SID's and one hits the maximum open cursor count, It is not switching to other SID instead the whole application becomes unavailable.
    STATNAME SID VALUE USER
    opened cursors current 20 14 APEX_PUBLIC_USER
    opened cursors current 149 74 APEX_PUBLIC_USER
    opened cursors current 194 71 APEX_PUBLIC_USER
    opened cursors current 211 5 APEX_PUBLIC_USER
    opened cursors current 227 325 APEX_PUBLIC_USER Killed
    opened cursors current 244 15 APEX_PUBLIC_USER
    opened cursors current 20 14 APEX_PUBLIC_USER
    opened cursors current 149 76 APEX_PUBLIC_USER
    opened cursors current 194 71 APEX_PUBLIC_USER
    opened cursors current 211 5 APEX_PUBLIC_USER
    opened cursors current 244 15 APEX_PUBLIC_USER
    Please kindly help in this.
    Thanks in Advance
    Thanks & Regards
    Sanjay
    Edited by: user11204334 on Dec 8, 2010 1:02 AM

  • Dynamic action on File browse change event

    Hi Experts,
    apex version 4.1
    This is what i'm trying to do..
    i have a file browse control and a text field. when user selects a file, selected fiel's name (without file type extension) should be set to text field.
    I tried adding a dynamic action to file browse control's change event and within pl/sql Set Value logic i queried the wwv_flow_files and tried to return the file name it didn't work. i got no data found error. i assumed file is being inserted into wwv_flow_files when a page submission happens.
    In my second approach within the SetValue pl/sql logic i got the file browser control's (by directly accessing field, not by querying wwv_flow_files)value and did some string manipulation and tried to return only the file name. yet i got the same no data found error.
    Any idea how can i implement this ?
    Thanks in advance.
    - kurubaran

    Hi,
    I think PL/SQL approach will not work before you submit data to database.
    Have you think use $v function to get value from file browser?
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21676/javascript_api.htm#BGBGDGIH
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • File browse : How to keep the file path in the file browse field?

    Hello,
    I have
    1) file browse field called P2_FILE_PATH.
    2) a select list with submit : P2_REGION
    If i upload some file d:\abc.gif , then select some region in the P2_REGION,
    P2_FILE_PATH will become empty. But in the session, i can find the blob value. but not the "d:\abc.gif "
    Using the following script I could capture the value of P2_FILE_PATH in a field
    P2_TEST.
    onload="javascript:document.getElementById(P2_FILE_PATH').value = document.getElementById('P2_TEST').value;"
    P2_TEST contains d:\abc.gif .
    How to retain the file path, though some other field is selected and submitted?
    Thanks in advance.
    Regards,
    Archana

    Hello Archana,
    You can't do what you want because of some HTML security restrictions – nothing to do with APEX. As you found out, You can capture the value of this item. You can't set it. After submitting the page, the browser is the one to clear the item.
    The only workaround is to work with AJAX and not submit the page until the end of the user input phase.
    Regards,
    Arie.

  • Getting the local full path name of a file from an item File Browser

    Hi all,
    I would like to get the local full path name, of a file selected from an item 'File browser'.
    I see in wwv_flow_files the column 'name', but actually it's a kind of id like 'F1542335/myFile.gif' for example.
    What i want is the local path of this file ("C:\Documents and Settings\All Users\....\myFile.gif").
    I hope this is possible??
    Anyway, thanks all for reading.
    Ludo

    Hello, thank you for the answer.
    Please understand that I searched before posting, and not ony 15 min.
    What i mean is that the value of a File Browser in an Apex applocation is something like 'F1542335/myFile.gif', but what I need is the local path location.
    And 'F1542335/' is not the local path location, i can't use it. Or maybe there is a way to convert it in a proper path name, such as "C:\Documents and Settings\....", but I don't think so.
    So my question is : how to get the local path name of a file in Apex?
    I'll answer if I find some good things.
    Thanks
    Ludo
    Edited by: user12945874 on 06-avr.-2010 3:59

  • File path control: invoke file browser activation

    Hi there,
    on the front panel of a vi I want a file path control to open automatically the file browser window when the user clicks into the path control. Is there any way to do that programmatically after the mouse down event has been fired? I couldn't find a suitable method so far.
    Thanks for any hint,
    Peter
    Solved!
    Go to Solution.

    I should point out that the mechanism you (I am referring to the OP) are proposing is counter-intuitive. Web browsers have started to do this, but they do it claiming security issues. Frankly, I think the security concern is small compared to the annoying change in normal behavior, but that's my just my opinion - I can't change the way Firefox or IE works.
    Do you not have the Browse button visible for the control? Clicking this displays a file browser. This is normal and expected behavior. 
    Message Edited by smercurio_fc on 07-03-2009 09:21 AM

  • Using File Browse to update stored file

    Hi all,
    I have a form with a File Browse item on it which is (surprisingly!) used to upload a file and associate with a record. The filename is stored in a varchar column in the table. This works fine when I create (INSERT) the initial record and I can retrieve the stored file just fine. However the problem I have is when I want to update the uploaded file. It seems the normal mechanisms for update / save requests don't apply to uploaded files. My other attributes get updated fine but the new uploaded filename is not reflected in the table.
    I've put together a simple example of this on a when apex.oracle.com :
    http://apex.oracle.com/pls/otn/f?p=40740
    Which has two fields, a file name and an 'attribute'. Try as I might I can't update the file name although the attribute changes just fine.
    Any suggestions will be much appreciated. I realise I may be missing something fundamental here and am more than happy to be enlightened.
    FYI, the purpose for such functionality is to allow users of our system to store a photograph of themselves along with their details. This functionality is required to allow the photograph to be updated if required.
    Thanks,
    Steve

    If i am not mistaking, using a file browser item type will not set the uploaded file (blob) in this item, to be processed in the standard processing on you're page.
    In a recent project i wrote a stored procedure for handling with uploaded files. This procedure, which based on the filename ( Fnnnn/<filename> ) , select the uploaded content through apex_application_files, the location apex saves the files. and procedure outputted the file as a blob, which then can be used to insert/update in youre table
    Hope this example code will help you:
    procedure upload_bestand( p_file_name in varchar2
    , p_file out nocopy blob
    , p_filetype out nocopy varchar2 )
    is
    -- Cursor voor bepalen bestand uit apex_application+files
    cursor c_file ( b_file_name in varchar2)
    is
    select aaf.filename
    , aaf.mime_type
    , aaf.blob_content
    from apex_application_files aaf
    where aaf.name = b_file_name
    r_file c_file%rowtype;
    begin
    open c_file ( b_file_name => p_file_name );
    fetch c_file into r_file;
    if c_file%notfound
    then
    -- Upload van bestand niet geslaagd
    close c_file;
    raise e_file_err;
    end if;
    close c_file;
    -- Geupload bestand uit temp_upload tabel verwijdern
    delete from apex_application_files
    where name = p_file_name
    commit;
    p_file := r_file.blob_content;
    p_filetype := r_file.mime_type;
    end upload_bestand;

  • Different issues with file browse item

    Hi everybody,
    I'm trying to create a file upload page using the file browse item. To achieve this I followed the how-to document :
    http://download-west.oracle.com/docs/cd/B19306_01/appdev.102/b16376/up_dn_files.htm.
    I've created my own table to store the documents as I store some extra information.
    When I test this functionality I discovered many issues.
    - If I upload a PDF file this gives me HTTP 404. When I go back, choose the same file with the browse button and upload again this will pass.
    - If I upload a file with spaces in it's name this file will be uploaded twice. (I see the same file two times in the table with 2 different names.
    - At random times I will just arrive at a blank page after clicking the upload button. It appears to me as this will happen more often when I use a double-click to select the file in the browser dialog compared to selecting the file and clicking open. However, I suppose this is just coincidence. It happens in both cases. I'm confronted with the problem with small files (1k, 4k) as well as with larger files (6m)
    - Like I said before, I store some extra information as well. In some cases this information is stored with the document. In some other cases he takes the description from a previous document to store along with the new document. I suppose this is some kind of session problem probably caused by the other problems I currently have and the fact I press back quite often in my browser (each time I arrive at a blank page)
    Version of HTML DB 2.1.0.00.05
    (Included with Oracle 10g express edition)
    I read several posts on this forum before creating my own thread.
    -> I found several discussions about the size of the file but the problem exists for files of 1K as well so I don't see a link with those discussions.
    -> I found several discussions about security and tablespace quota. I granted unlimited tablespace to each and every user : flows_020000, flows_020100, flows_files, htmldb_public_user and the user who is used in the application.
    Tx very much for your help!
    Kris

    Hi Kris,
    I think you're problem is coming from local session info... using the back button is not that good. Put a back button in your application ;-)
    An other thing I wonder is; are you developing and testing on the same machine and at the same time? - I did that before and that gave me some problems. Now I'm developing in Firefox and test with IE or vice-versa.
    Dimitri

  • Garageband custom "user-loops" files missing

    I'm using Garageband '09 (Version 5.1 (398) and I am having trouble locating my custom "user loops" files.
    I know that custom made apple loops are saved in
    Library/Audio/Apple Loops/User Loops
    I have about 100 loops saved in the folder, but in Garageband I have over 200 saved custom made loops that work fine. I am able to use all of the loops, only about half of them have files in the correct place.
    Doing a spotlight search does not find anything, even when I search for the custom loop name exactly and search "This Mac" and "Library".
    One strange thing I've found is when viewing the loops browser, at the top there is a dropdown labeled "Loops" that offers the filters "My Loops" and "Shared Loops on my Mac". It seems that I can only find the files for "My Loops" and the "Shared Loops on my Mac" are the missing ones.
    Is there another place these files could be saved? I can use them in Garageband so they must be somewhere.

    How can I create loops that are "My Loops" vs "Shared Loops on my Mac" on purpose.
    Check your Preferences setting:
    In the "Loops" tab of the Preferences panel - the "My Apple Loops" option.
    If you share your loops with all users on your mac (users havg different accounts) then the loops will be installed in the System Library, but if you do not share, your loops will be installed in your user library. If you log in from a different account you will not be able to use them.
    Regards
    Léonie
    I don't have Logic installed, but both installation places should make it possible for Logic and MainStage to use the loops. It is the standard place where applications are looking for Apple Loops.

  • 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

  • Error bars in keynote

    Does anyone know how to manually insert individual error bars in a bar chart in keynote? the custom option is greyed out in keynote and when I tried it in Numbers I could only use the same value for all the columns rather than specify for each. Cheer

  • How do i copy and paste signature to pdf file

    how do i copy and paste my signature to a pdf. file

  • BW QA system pointing towards different R/3 QA

    Hello all, We have a situation here where HR is doing their QA testing in one box (DRQ) and FI is going to do their QA testing in different box (DRX) and the time difference between their testing in not much infact they will do the testing in the sam

  • Why I cannot read my file???

    I write an applet to read a file in another directory... But every time I run the applet, it gives me this exception.. Java.security.AccessControlException :access denied (java.io.FilePermission C:/product development/con/app.ini read) Wat did I went

  • VERIZON MESSAGES PC App

    I am trying to use the Version Messages Desktop App for the PC using Windows 7. I am able to correctly register my phone number with the app. I even get a text msg on my phone stating "VZW Free Msg: Your device has been successfully registered with y