How to save file from download folder

how and where do I save a file from the download folder?

Glenn,
The downloads folder (for your user) is located in the folder:
/User/<your user name>/Downloads
You can get to this folder by (in the Finder) by using the menu item "Go > Downloads":
or using the key combination <option> + <command> + L
you may use installers and files directly from this folder and may move them to other folders in your user space.  Where they go depends on how you like to organize files.

Similar Messages

  • How to move downloaded files from download folder to other relevant folder or how to download files in relevant folders other than download folder

    how to move downloaded files from download folder to other relevant folder or how to download files in relevant folders other than download folder

    Just drag the file from the Download folder to the folder of your choice in Finder. If you are using Safari you can designate a new default download destination in Safari>Preferences>General tab, 'Save Downloads to...'. Other browsers should have a similar option in their preferences.

  • How to move files from one folder to another folder in webdynpro java for sap portal

    Dear Experts,
    I wan to move files from one folder to another folder in SAP portal 7.3 programmatically in webdynpro java.
    My requirement is in my portal 1000 transport packages is their. Now i want to move 1 to 200 TP's into Archive folder.
    Can you please help me how to do in through portal or wd java ...
    Regards
    Chakri

    Hello,
    Do you know what the difference between copying a file this way :
    ** Fast & simple file copy. */
    public static void copy(File source, File dest) throws IOException {
    FileChannel in = null, out = null;
    try {         
    in = new FileInputStream(source).getChannel();
    out = new FileOutputStream(dest).getChannel();
    long size = in.size();
    MappedByteBuffer buf = in.map(FileChannel.MapMode.READ_ONLY, 0, size);
    out.write(buf);
    } finally {
    if (in != null) in.close();
    if (out != null) out.close();
    ================SECOND WAY============
    AND THIS WAY:
    // Move file (src) to File/directory dest.
    public static synchronized void move(File src, File dest) throws FileNotFoundException, IOException {
    copy(src, dest);
    src.delete();
    // Copy file (src) to File/directory dest.
    public static synchronized void copy(File src, File dest) throws IOException {
    InputStream in = new FileInputStream(src);
    OutputStream out = new FileOutputStream(dest);
    // Transfer bytes from in to out
    byte[] buf = new byte[1024];
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    in.close();
    out.close();
    And which is better? I read up on what each kind of does but still a bit unclear as to when it is good to use which.
    Thanks in advance,
    JavaGirl

  • New to Firefox. How do I save file from download window?

    I choose "save file." Get download window. Thereupon right click options are open and remove. I don't want to open.

    BEWARE!!! I, too, downloaded the toolbar, and shortly after, I realized I had been scammed.I immediately ran a scan on my computer after uninstalling the toolbar and found 4 infected files. I also reported the perpetrator to craigslist, so hopefully these people can be stopped!

  • How to dowload files from a folder in domain

    Hi
    I've just started with coldfusion and i'm wondering is there any possibility to download files from domain shared folder, i was trying to solve the problem as same like files stored on local disk but it doesnt work, has someone idea how can i do this i will be thankfull
    T.Brudnicki

    Ok i used this example to tests but it still dosen't work
    <html>
    <head>
    </head>
    <body>
    <cfinclude template="download.cfm">
    Dupa i tyle i zacznijmu listowac <br>
    <cfdirectory directory="\\pl1xpd-16286.ta.global\shared_data\applet\" name="dirQuery" action="LIST">
    <br>Wynik<br>
    <cfloop query = "dirQuery">
        <cfoutput>
            #dirQuery.name#
        </cfoutput>
    </cfloop>
    </body>
    </html>
    it looks like that in this folder there is ona file but it doesnt list me, what iam doing wrong?

  • Can I safely move to Trash all downloaded files from Downloads folder, for the purpose of freeing up storage space?

    My Downloads folder has reached 30GB. I am not sure why I keep adding files without ever cleaning up what's there. As a matter of fact, what's there can easily be re-downloaded from the web in case of need.
    Can I safely trash 100% of the content of my Downloads Folder?

    They're your files, so it's up to you whether to delete them or not. I personally don't tend to keep downloads if they are easily re-downloaded. (An exception might be a large download that for some reason may need to be reinstalled.)

  • How to save file on server folder

    hi
    i was trying to save file in my specify folder path.
    but it cann't save on than location.
    if i will not specify path then it directly save file on "c:program files\tomcat5.7\bin\mytextfile.txt"
    if i will specify perfect path "c://systemfile//mytextfile.txt"
    it saves on that location.
    if i will define path as ".//www//systemfile//mytextfile.txt"
    "//www//systemfile//mytextfile.txt"
    "//systemfile//mytextfile.txt"
    ".//mytextfile.txt" it cann't save file on location

    i know how to upload file .
    i need to save file on my web folder " /www/file/ xxxx.txt"
    how i will save it .over ther in my program i will specify location "c:/Program file/file/xxxxxx.txt"

  • How to save mails from "sent"-folder to another folder (enterprise-server)

    i am using bb with an enterprise server (lotus notes) an would like to save a sent mail from the sent folder to another folder. with my blackberry bold it was no problem to save sent mails like every incoming mails to a folder. but with my Z10 i could read all sent mails but cant save them to a folder. any ideas to solve this?

    Hello,
    Given that you are on BES, you need to work with your BES admins to find out what features and functions exist for you with BB10. If, for example, they have not updated to BES10, then it is possible that some functions will not be available to you until they do. But, only they (your BES admins) can tell you exactly what you should expect from the environment that they control.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to save file from server to client machine

    Hi,
    By using POI library i'm writing values to the existing excel sheet which is available in server. After i written values to the excel, i want to save the same file to the client machine.
    How to achieve this.
    I googled about this, but still i didn't get any clear idea.
    Thanks in advance,
    SAN

    Sameera,
    No, i can't understand what is the meaning of the following code:
    public void doDownload(FacesContext facesContext, OutputStream outputStream) {
    // write the neccessary code to get the download data from the Model
    String data = getDownloadData();
    // save to the output stream
    try {
    OutputStreamWriter writer = new OutputStreamWriter(outputStream,"UTF-8");
    writer.write(data);
    writer.close();
    outputStream.close();
    } catch (IOException e) {
    // handle I/O exceptions
    can you please explain this code little more.
    Edited by: san-717 on Feb 29, 2012 2:30 PM

  • How to save files from email

    I am having issues saving a garageband file that my friend emailed to me from his ipad. I want to save it to my ipad so that I can add guitar to the vocals. When I go to my email I can play the file and it will let me email the file or massage it but I am not getting an option to save it. What am I missing?!

    I know it's not a perfect fix, but I would open a Gmail account just for this purpose and forward anything with an attachment to that account.
    Then, you can just switch email accounts to view the attachments of any of the files you need.

  • Computer died - how to save files from the iphone?

    My computer died and my iPhone holds all my music and photos. I know how to restore purchasemusic and save Camera Roll photos, but I also have old music that I burned from CDs and photos that are synced with My Photos. Does anyone know have any ideas?

    http://www.wideanglesoftware.com/touchcopy/index.php  PC and Mac versions
    http://www.ecamm.com/mac/phoneview/  Mac only

  • How to preventing files from downloading when I open them

    Hi there,
    Is there a setting somewhere on my computer that will allow me to open files (in emails, on webpages, etc.) without first having to download them? Please help....

    No.
    If you are using an email client such as the Mail.app to access an email account, a message attachment must be downloaded with the message in order to open it and the same when accessing the account via webmail access using a browser.
    Why is this a problem?

  • Has anyone began using the new iStick?  I cannot figure out how to save files from my iPad to the new iStick?

    I have recently bought the new iStick and absolutely love it!  The only question that I have is figuring out how to open a file on my iPad and saving it to the iStIck.  Does anyone have any experience with this?

    Here's the app and an article. Sorry I never used one.
    iStick by Ming Yanhttp://recode.net/2014/07/15/finally-a-usb-thumb-drive-for-the-latest-iphones-an d-ipads/
    https://appsto.re/us/FAunJ.i
    http://recode.net/2014/07/15/finally-a-usb-thumb-drive-for-the-latest-iphones-an d-ipads/

  • How to copy file from application server

    Hello experts,
    How to copy file from one folder of application server and paste it to other folder of application server(application server is same)?
    Is there any function module exists???
    thanks in advance
    Saurabh

    Hi you can use this function module to move a file from application server to another folder on application server.
    call function 'WS_FILE_COPY'
               exporting
                    destination = m_destination
                    source      = m_source
               importing
                    return      = return.
    Plus u can use this function module to delete the file from that folder from which u want to replace it.
          call function 'WS_FILE_DELETE'
               exporting
                    file   = m_source
               importing
                    return = return.
    The above FM can help u copy a file from one folder to another and delete the file from that folder.

  • How to get the file name from downloads folder with the applescript??

    Hi All..
    I am downloading an application to downloads folder, I need to install the same application after downloading programatically.
    So how do I get the filename in runtime while downloading or after downloading from downloads folder with Applescript or Java?
    Also my download URL link doesnot contain full name of the download file.
    Pls suggest.

    Hi,
    The best method is to use curl.
    Other methods are not reliable, but can work, it depends on several factors (what the script does, what the user does).
    Here is an example with the curl command:
    set tUrl to "http://sourceforge.net/projects/vlc/files/2.0.4/macosx/vlc-2.0.4.dmg/download?ac cel_key=60%3A1350656196%3Ahttp%253A//www.videolan.org/vlc/download-macosx.html%3 A7233e4e9%245818d66f39b0576e1e9c4a0f3b46b1991180bfdd&click_id=976a88ee-19f7-11e2 -9a21-0200ac1d1d8e&source=accel"
    set dFolder to path to downloads folder
    tell application "Finder" to set newFolder to (make new folder at dFolder) as string
    set f to quoted form of POSIX path of newFolder
    do shell script "cd " & f & " && curl -L " & tUrl & " -o 'vlc.dmg'" -- download  to file "vlc.dmg"
    set downloadedFile to newFolder & "vlc.dmg" --<-- HFS path
    --do something with the downloadedFile

Maybe you are looking for

  • How to use one ODSI project artifact as jar for other ODSI project?

    Hi, I am working on multiple ODSI proejcts in Same Server. My problem is how to call one projects resources in other ODSI project. I need this as Some of Data Services read the data from more then one database. The projects are in seprate Dataspace p

  • External HHD cant detected in my macbook

    Hi i bought an external HDD sumsung 250GB. Plan is to back up data using time machine and than insert this sumsung HDD to swap the oem HDD from my new 13" macbook. However when i plug in the USB there were no trace of the sumsung HDD icon. I Tried to

  • Sales Orders from Handheld

    Helloo Can any one recomend an addon for taking the sales order with handheld for example a sales person visiting clients. Any suggestions ? Experiencies ?

  • Volume on alert tones 6500 slide

    Hi I've recently changed from a 6300 to 6500 slide and overall I'm really pleased with it. However, the volume for the message alert tones is really loud. On the 6500 it the volume is really loud and it had the added benefit of flashing. The software

  • How to remove text

    I have added a piece of text to a movie I am making. How do I remove it?