Controlling download folders in Safari

Ask a Question related to Mac Applications & Software, Design and Development.

  1. #1

    Default Re: Controlling download folders in Safari

    In article <fishfry-8F5570.22024916072003@netnews.attbi.com>,
    fishfry <fishfry@your-mailbox.com> wrote:
    > I'd like to be able to have different filetypes go to different download
    > folders. For example if I click on a pdf on a website, I'd like that
    > file to end up in a pdf folder. If I download some source code from
    > CPAN or SourceForge I'd like those to go into a gz folder.
    >
    > The reason I want to be able to do this is that otherwise, my single
    > download folder loads up with everything, and when I go to clean it up
    > every few weeks, I have hundreds of files in there and it's time
    > consuming to remember what file is what.
    >
    > Any suggestions on how I could do this?
    Folder Actions!

    Set up a applescript to react upon new items in a folder and attach it to your
    downloads folder. then have the script move the new files if they end in a
    given extension.

    --
    Sandman[.net]
    Sandman Guest

  2. Similar Questions and Discussions

    1. Duplicate folders being created within folders
      I am noticing that since we started using Contribute on our website that duplicate folders are being created within the folder. For example - I have...
    2. how to download on safari
      I am trying to download shockwave on safari, and I have followed all of the steps to do it, but it will not let me. Anyone know what to do?
    3. Accessing files/folders inside other application folders
      How can I have an asc file from one application read text files in another applications directory? I have multiple applications creating text...
    4. Safari quits during Filereference.download()
      Hi! Safari unexpectedly quits during download in flash when using the Filreference class. Filsize is about 30 - 40 mb. And usually it happens...
    5. Making folders and sub-folders and files NOT read-only
      I select a folder. I right click my mouse on that folder and select properties. I uncheck the Read Only checkbox. I click on Apply. I check the...
  3. #2

    Default Re: Controlling download folders in Safari

    In article <fishfry-8F5570.22024916072003@netnews.attbi.com>,
    fishfry <fishfry@your-mailbox.com> wrote:
    > I'd like to be able to have different filetypes go to different download
    > folders. For example if I click on a pdf on a website, I'd like that
    > file to end up in a pdf folder. If I download some source code from
    > CPAN or SourceForge I'd like those to go into a gz folder.
    >
    > The reason I want to be able to do this is that otherwise, my single
    > download folder loads up with everything, and when I go to clean it up
    > every few weeks, I have hundreds of files in there and it's time
    > consuming to remember what file is what.
    >
    > Any suggestions on how I could do this?
    Folder Actions!

    Set up a applescript to react upon new items in a folder and attach it to your
    downloads folder. then have the script move the new files if they end in a
    given extension.

    --
    Sandman[.net]
    Sandman Guest

  4. #3

    Default Re: Controlling download folders in Safari

    In <fishfry-8F5570.22024916072003@netnews.attbi.com> fishfry wrote:
    > I'd like to be able to have different filetypes go to different
    > download folders.
    A small AppleScript program (perhaps as a Folder Action) would solve
    this quickly and easily. m.

    --
    matt neuburg, phd = [email]matt@tidbits.com[/email], [url]http://www.tidbits.com/matt[/url]
    REALbasic: The Definitive Guide! 2nd edition!
    [url]http://www.amazon.com/exec/obidos/ASIN/0596001770/somethingsbymatt[/url]
    Subscribe to TidBITS. It's free and smart.
    matt neuburg Guest

  5. #4

    Default Re: Controlling download folders in Safari

    In <fishfry-8F5570.22024916072003@netnews.attbi.com> fishfry wrote:
    > I'd like to be able to have different filetypes go to different
    > download folders.
    A small AppleScript program (perhaps as a Folder Action) would solve
    this quickly and easily. m.

    --
    matt neuburg, phd = [email]matt@tidbits.com[/email], [url]http://www.tidbits.com/matt[/url]
    REALbasic: The Definitive Guide! 2nd edition!
    [url]http://www.amazon.com/exec/obidos/ASIN/0596001770/somethingsbymatt[/url]
    Subscribe to TidBITS. It's free and smart.
    matt neuburg Guest

  6. #5

    Default Controlling download folders in Safari

    I'd like to be able to have different filetypes go to different download
    folders. For example if I click on a pdf on a website, I'd like that
    file to end up in a pdf folder. If I download some source code from
    CPAN or SourceForge I'd like those to go into a gz folder.

    The reason I want to be able to do this is that otherwise, my single
    download folder loads up with everything, and when I go to clean it up
    every few weeks, I have hundreds of files in there and it's time
    consuming to remember what file is what.

    Any suggestions on how I could do this?
    fishfry Guest

  7. #6

    Default Controlling download folders in Safari

    I'd like to be able to have different filetypes go to different download
    folders. For example if I click on a pdf on a website, I'd like that
    file to end up in a pdf folder. If I download some source code from
    CPAN or SourceForge I'd like those to go into a gz folder.

    The reason I want to be able to do this is that otherwise, my single
    download folder loads up with everything, and when I go to clean it up
    every few weeks, I have hundreds of files in there and it's time
    consuming to remember what file is what.

    Any suggestions on how I could do this?
    fishfry Guest

  8. #7

    Default Re: Controlling download folders in Safari

    In article <fishfry-7AB283.10433717072003@netnews.attbi.com>,
    fishfry <fishfry@your-mailbox.com> wrote:
    >I'd like to be able to have different filetypes go to different download
    >folders. For example if I click on a pdf on a website, I'd like that
    >file to end up in a pdf folder. If I download some source code from
    >CPAN or SourceForge I'd like those to go into a gz folder.
    >
    >The reason I want to be able to do this is that otherwise, my single
    >download folder loads up with everything, and when I go to clean it up
    >every few weeks, I have hundreds of files in there and it's time
    >consuming to remember what file is what.
    >
    >Any suggestions on how I could do this?
    You could leave the download process itself alone and set up
    a cron job. Say, run it every night and have a line for
    each type of file and a corresponding directory.

    #!/bin.sh
    mv *.gz gz
    mv *.pdf pdf

    --
    Daniel Packman
    NCAR/ACD
    [email]pack@ucar.edu[/email]
    Daniel Packman Guest

  9. #8

    Default Re: Controlling download folders in Safari

    In article <fishfry-7AB283.10433717072003@netnews.attbi.com>,
    fishfry <fishfry@your-mailbox.com> wrote:
    >I'd like to be able to have different filetypes go to different download
    >folders. For example if I click on a pdf on a website, I'd like that
    >file to end up in a pdf folder. If I download some source code from
    >CPAN or SourceForge I'd like those to go into a gz folder.
    >
    >The reason I want to be able to do this is that otherwise, my single
    >download folder loads up with everything, and when I go to clean it up
    >every few weeks, I have hundreds of files in there and it's time
    >consuming to remember what file is what.
    >
    >Any suggestions on how I could do this?
    You could leave the download process itself alone and set up
    a cron job. Say, run it every night and have a line for
    each type of file and a corresponding directory.

    #!/bin.sh
    mv *.gz gz
    mv *.pdf pdf

    --
    Daniel Packman
    NCAR/ACD
    [email]pack@ucar.edu[/email]
    Daniel Packman Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139