Ask a Question related to Mac Applications & Software, Design and Development.
-
Sandman #1
Re: Controlling download folders in Safari
In article <fishfry-8F5570.22024916072003@netnews.attbi.com>,
fishfry <fishfry@your-mailbox.com> wrote:
Folder Actions!> 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?
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
-
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... -
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? -
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... -
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... -
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... -
Sandman #2
Re: Controlling download folders in Safari
In article <fishfry-8F5570.22024916072003@netnews.attbi.com>,
fishfry <fishfry@your-mailbox.com> wrote:
Folder Actions!> 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?
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
-
matt neuburg #3
Re: Controlling download folders in Safari
In <fishfry-8F5570.22024916072003@netnews.attbi.com> fishfry wrote:
A small AppleScript program (perhaps as a Folder Action) would solve> I'd like to be able to have different filetypes go to different
> download folders.
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
-
matt neuburg #4
Re: Controlling download folders in Safari
In <fishfry-8F5570.22024916072003@netnews.attbi.com> fishfry wrote:
A small AppleScript program (perhaps as a Folder Action) would solve> I'd like to be able to have different filetypes go to different
> download folders.
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
-
fishfry #5
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
-
fishfry #6
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
-
Daniel Packman #7
Re: Controlling download folders in Safari
In article <fishfry-7AB283.10433717072003@netnews.attbi.com>,
fishfry <fishfry@your-mailbox.com> wrote:You could leave the download process itself alone and set up>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?
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
-
Daniel Packman #8
Re: Controlling download folders in Safari
In article <fishfry-7AB283.10433717072003@netnews.attbi.com>,
fishfry <fishfry@your-mailbox.com> wrote:You could leave the download process itself alone and set up>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?
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



Reply With Quote

