Kondro Posted February 22, 2011 Posted February 22, 2011 (edited) hello, I need to add something to a script i have for installing a program. after the install i need to create a directory on a drive other than c:\ if it exists or if not then create it on c:\. any ideas? so far this is what i have but it only checks for E:\ then if not exist create on c:\. I need to prioritise it and create the directory on the highest fixed drive letter but only one one drive. $var = DriveStatus( "e:\") If $var = ("FIXED") Then DirCreate("e:\Pro_work") Else DirCreate("c:\Pro_work") Edited February 22, 2011 by Kondro
Moderators Melba23 Posted February 22, 2011 Moderators Posted February 22, 2011 Kondro,Look at DriveGetDrive in the Help file. If you use the "FIXED" type parameter you will get a list of the drives in alphabetical order, so finding the highest is easy. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Kondro Posted February 23, 2011 Author Posted February 23, 2011 Kondro,Look at DriveGetDrive in the Help file. If you use the "FIXED" type parameter you will get a list of the drives in alphabetical order, so finding the highest is easy. M23Thank you, yes there are several ways to get a list of local drives. My problem is coding it to create the directories in the highest drive letter found and then end the function.
wakillon Posted February 23, 2011 Posted February 23, 2011 (edited) Thank you, yes there are several ways to get a list of local drives. My problem is coding it to create the directories in the highest drive letter found and then end the function. Try $_FolderName = 'Kondro' $_FixedDriveList = DriveGetDrive ( "fixed" ) If Not @error Then DirCreate ( $_FixedDriveList[UBound ($_FixedDriveList)-1] & '\' & $_FolderName Edited February 23, 2011 by wakillon AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
Kondro Posted February 25, 2011 Author Posted February 25, 2011 That works great. I just had to add a ) to the end of line 3. THANKYOU!
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