AutoHotkey Community

It is currently May 27th, 2012, 1:29 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: Magic Folder remodel
PostPosted: March 29th, 2009, 4:41 am 
I found a Vista sidebar tool that I think would be super-helpful if one could integrate it into XP thru AHK, but since I am still a n00b at the syntax and I still work thru reverse engineering others' code, I have no idea how to do this.

Basically the Magic Folder widget allows you to take items from the desktop and drag-drop them onto the icon, which them files them away to a folder you specify. This would be very handy for people who save things to the desktop for quick access but eventually would like to put them into an organized folder, like myself. I would not think this a particularly difficult task, but like I said I'm not very solid on writing it.

Another option I think would be nifty and (hopefully) not too hard to implement would be placing files in a specific folder depending on the estension, ie

If *.mp3
 Then <MOVEFILE> dir1
If *.doc
 Then <MOVEFILE> dir2
etc.

Below is the link from which I found the sidebar widget. If anyone has any ideas or is willing to help me put this together that would be great!

http://lifehacker.com/319826/keep-files ... gic-folder


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 29th, 2009, 1:02 pm 
Code:
SplitPath, 1, OutFileName,, OutExtension
Destination := A_Desktop "\" OutExtension "\" OutFileName ; eg. Desktop\txt\<Filename>
FileMove, %1%, %Destination%
If (ErrorLevel != 0)
   SoundBeep
ExitApp


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot], BrandonHotkey, chaosad, oldbrother and 18 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group