Jump to content

Recommended Posts

Posted (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 by snowman533

Intermediate AutoIt/Autohotkey User

Posted

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

Posted (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 by snowman533

Intermediate AutoIt/Autohotkey User

Posted

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

Posted

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

i understand that but this is just quicker if you need a large path, if you know what i mean

Intermediate AutoIt/Autohotkey User

Posted (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 by Mat

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...