snowman533 Posted October 31, 2009 Posted October 31, 2009 (edited) Hey all, title says it all, this is a very simple directory maker ever need to make a path but found it annoying to keep making new folders manually? then this is for you this removes the need to constantly right click > New > New Folder to make paths, this thing will decrease the amount of time needed for that tedious task from minutes to mere seconds First it asks you where you want to start the new path, then just type in the rest in the next dialog box say for example you picked your Music folder, click Ok, then type in for example: <Artist>\<Album>\disc <number> it creates folders in the path if they don't exist, this is what is saving you the most time here is the code: ;a simple directory maker by Frosty ;OS: WinAll $setdir=FileSelectFolder ( "Base Folder, please choose the folder that you wish the new directory to start", "@DesktopDir",4) $makedir=InputBox("Directory Maker", "what to save the new path as? all folders will be created if they don't exist") DirCreate ( $setdir & "\" & $makedir ) you can download the exe here: http://www.frostyssoldatgather.com/Directory_Maker_Project/Directory_Maker.exe tell me what you think guys this is Version 1 coming up in Version 2: -Mass Path Making Edited October 31, 2009 by snowman533 Intermediate AutoIt/Autohotkey User
trancexx Posted October 31, 2009 Posted October 31, 2009 This is very nice. You even uploaded compiled! Maybe if you could add more comments in your code so we don't lose ourselves while learning from it. Can't wait for v2. ♡♡♡ . eMyvnE
snowman533 Posted October 31, 2009 Author Posted October 31, 2009 (edited) sorry try this one: http://www.frostyssoldatgather.com/Directory_Maker_Project/Directory_Maker.exe link has been updated in top post as well ^-^ Edited October 31, 2009 by snowman533 Intermediate AutoIt/Autohotkey User
corgano Posted November 1, 2009 Posted November 1, 2009 Is this really needed? right clicking makes much more sense Now, if it did something like, what if you needed 100 folders made in (folder) that are named $inputtext & "-" & $num, so the end result would be 100 filders named inputtext-1 to -100 What if someone need 100 folders for the next 100 days? $inputtext-dd_mm_yyyy Try adding some functionality to your script. There is no need to use it as is 0x616e2069646561206973206c696b652061206d616e20776974686f7574206120626f64792c20746f206669676874206f6e6520697320746f206e657665722077696e2e2e2e2e
snowman533 Posted November 1, 2009 Author Posted November 1, 2009 Is this really needed? right clicking makes much more senseNow, if it did something like, what if you needed 100 folders made in (folder) that are named $inputtext & "-" & $num, so the end result would be 100 filders named inputtext-1 to -100What if someone need 100 folders for the next 100 days? $inputtext-dd_mm_yyyyTry adding some functionality to your script. There is no need to use it as isi understand that but this is just quicker if you need a large path, if you know what i mean Intermediate AutoIt/Autohotkey User
Yashied Posted November 1, 2009 Posted November 1, 2009 What if I clicked Cancel button in Select Folder dialog box? Perhaps complicate the code and add a check for this condition? My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
Yashied Posted November 1, 2009 Posted November 1, 2009 (edited) Seriously what? Remember what was your very first script. Edited November 1, 2009 by Yashied My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
Developers Jos Posted November 1, 2009 Developers Posted November 1, 2009 Yashied are you serious?Please stay out of threads like this when you don't have anything to contribute. SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Mat Posted November 1, 2009 Posted November 1, 2009 (edited) http://www.autoitscript.com/forum/index.php?showtopic=90464&st=0&p=650618&#entry650618 On a more serious note... How about looking at GUI's, possibly looking at treeviews etc... Edited November 1, 2009 by Mat AutoIt Project Listing
snowman533 Posted November 2, 2009 Author Posted November 2, 2009 i am thinking of something like that for version 2 Intermediate AutoIt/Autohotkey User
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now