mr-es335 Posted Tuesday at 02:04 PM Posted Tuesday at 02:04 PM Good day, I need to exit a "drives"...for example, "D:" For example...this only works when "Display the full path..." [Folder Options, View] is enabled! • With that option disabled, the script no longer executes. ; ----------------------------------------------- Opt("MustDeclareVars", 1) ; ----------------------------------------------- ExitFolder() ; ----------------------------------------------- Func ExitFolder() Local $sSrcPath = "D:\" Local $iFileExists = FileExists($sSrcPath) ; ----------------------------------------------- If $iFileExists Then WinClose($sSrcPath) EndIf EndFunc ;==>ExitFolder ; ----------------------------------------------- The label for the drive is: "Utilities". I have attempted numerous examples form the forum...with no success!! "Help!!!" mr-es335 Sentinel Music Studios
pixelsearch Posted Tuesday at 02:27 PM Posted Tuesday at 02:27 PM Hello, could you try to add this line to your script ? Opt("WinTitleMatchMode", -3) ;1=start (default), 2=subStr, 3=exact, 4=advanced, -1 to -4=Nocase "I think you are searching a bug where there is no bug..."
mr-es335 Posted Tuesday at 02:41 PM Author Posted Tuesday at 02:41 PM pixelsearch, Sorry, none of those various options "worked"! mr-es335 Sentinel Music Studios
mr-es335 Posted Tuesday at 02:50 PM Author Posted Tuesday at 02:50 PM Good day, Hmmmm...this "worked"... #include <MsgBoxConstants.au3> Example() Func Example() Local $sFilePath = "D:\" Local $iFileExists = FileExists($sFilePath) If WinClose("[CLASS:CabinetWClass]", "") Then MsgBox($MB_SYSTEMMODAL, "", "Window closed") Else MsgBox($MB_SYSTEMMODAL + $MB_ICONERROR, "Error", "Window not Found") EndIf EndFunc ;==>Example mr-es335 Sentinel Music Studios
pixelsearch Posted Tuesday at 03:08 PM Posted Tuesday at 03:08 PM (edited) Just now, mr-es335 said: Sorry, none of those various options "worked"! Yes I wasn't sure it will work for you. Let me explain why it worked for me : I got 2 opened windows whose names start with "C:\" , these windows are : 1) Scite : window name : C:\Documents and Settings\Administrateur\blablabla - SciTE - blablabla 2) Explorer : window name when opened at C root : C:\ So when I run your script (with of course $sSrcPath = "C:\") it's like I'm running it using this default line : Opt("WinTitleMatchMode", 1) ;1=start (default), 2=subStr, 3=exact, 4=advanced, -1 to -4=Nocase As the default is 1 (start) then... my Scite window closes instead of my Explorer window, because the 1st window retrieved was unfortunately the Scite window, whose name starts with C:\ But when I run your script with this line : Opt("WinTitleMatchMode", -3) ;1=start (default), 2=subStr, 3=exact, 4=advanced, -1 to -4=Nocase Then the correct Explorer window is closed because I asked for an exact match (3 or -3) So even if the solution I indicated in my preceding post didn't make it in your case, it's good to know what to do in case one day you face the same situation that just happened to me. Edit: glad to see you made it using CLASS Edited Tuesday at 03:08 PM by pixelsearch "I think you are searching a bug where there is no bug..."
ioa747 Posted Tuesday at 04:14 PM Posted Tuesday at 04:14 PM (edited) 2 hours ago, mr-es335 said: The label for the drive is: "Utilities". I have attempted numerous examples form the forum...with no success!! to me where the drive D:\ is label 'Data' , the title is Data (D:) ; ----------------------------------------------- Opt("MustDeclareVars", 1) ; ----------------------------------------------- ExitFolderWnd("(D:)") ; ----------------------------------------------- Func ExitFolderWnd($sTitle) Local $hWnd = WinGetHandle("[CLASS:CabinetWClass; REGEXPTITLE:(?i)(.*" & $sTitle & ".*)]") If WinExists($hWnd) Then Return WinClose($hWnd) EndFunc ;==>ExitFolder ; ----------------------------------------------- if Windows Explorer and the title contains the string '(D:)' Edited Tuesday at 04:15 PM by ioa747 I know that I know nothing
mr-es335 Posted Tuesday at 04:15 PM Author Posted Tuesday at 04:15 PM Good day, Well...this works... expandcollapse popup; ----------------------------------------------- Opt("MustDeclareVars", 1) ; ----------------------------------------------- UpdateDtIP() ; ----------------------------------------------- Func UpdateDtIP() ExitFolder() LaunchFolder() LaunchTxt() EndFunc ;==>UpdateDtIP ; ----------------------------------------------- Func ExitFolder() Local $sFilePath = "D:\" Local $iFileExists = FileExists($sFilePath) ; ----------------------------------------------- If $iFileExists Then WinClose("[CLASS:CabinetWClass]", "") EndIf EndFunc ;==>ExitFolder ; ----------------------------------------------- Func LaunchFolder() Local $sSrcPath = "D:\Initial_Prep" ; ----------------------------------------------- ShellExecute($sSrcPath) Sleep(150) ;~ WinMove($sSrcPath, "", 406, 100, 550, 650) WinMove("[CLASS:CabinetWClass]", "", 406, 100, 550, 650) EndFunc ;==>LaunchFolder ; ----------------------------------------------- Func LaunchTxt() Local $sSrcPath = "D:\Initial_Prep\Procedure_Initial_Prep.txt" ; ----------------------------------------------- ShellExecute($sSrcPath) Sleep(150) WinMove($sSrcPath, "", 964, 100, 550, 650) EndFunc ;==>LaunchTxt ; ----------------------------------------------- mr-es335 Sentinel Music Studios
Nine Posted Tuesday at 04:33 PM Posted Tuesday at 04:33 PM (edited) @ioa747 If you go one level down, D:\ does not show anymore unless you got full path displayed. To know if you are inside the D:\ drive you need to read the toolbar : #include <Constants.au3> Local $hWnd = WinGetHandle("[CLASS:CabinetWClass]") If Not $hWnd Then Exit MsgBox($MB_OK, "Error", "Unable to find Explorer") Local $sPath = ControlGetText($hWnd, "", "ToolbarWindow323") If StringInStr($sPath, "D:\") Then MsgBox($MB_OK, "Info", "You are in D: drive") Edited Tuesday at 04:34 PM by Nine “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy
ioa747 Posted Tuesday at 05:00 PM Posted Tuesday at 05:00 PM 7 minutes ago, Nine said: If you go one level down, D:\ does not show anymore unless you got full path displayed. I don't have full path displayed enabled. what is the level below? (D:) is only displayed at the 1st level otherwise the window title is displayed e.g. in D:\Documents the title is Documents or D:\Documents if full path enabled. I know that I know nothing
Nine Posted Tuesday at 05:13 PM Posted Tuesday at 05:13 PM That's what I meant D:\Documents shows Documents (without any reference to D:). Unless you got full path displayed. To know if you are on D:\ drive (when not full path) you need to read the toolbar. No stress here. Just wanted to make a precision. ioa747 1 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy
ioa747 Posted Wednesday at 05:05 AM Posted Wednesday at 05:05 AM @mr-es335 The ExitFolder() Func ExitFolder() Local $sFilePath = "D:\" Local $iFileExists = FileExists($sFilePath) ; ----------------------------------------------- If $iFileExists Then WinClose("[CLASS:CabinetWClass]", "") EndIf EndFunc ;==>ExitFolder may not work as you expect e.g. if instead of the d: window you have any Explorer window open then that is what will close I know that I know nothing
ioa747 Posted Wednesday at 06:30 AM Posted Wednesday at 06:30 AM This function works even when not full path displayed e.g. If the window 'D:\Documents' exists and the title is 'Documents' ExitFolderWnd("D:\Documents") closes the Documents window it catches 'D:\Documents' without catching 'D:\Documents\something' Local $iRet = ExitFolderWnd("D:\") ConsoleWrite("ExitFolderWnd=" & $iRet & @CRLF) ; ----------------------------------------------- Func ExitFolderWnd($sPath) Local $aList = WinList("[CLASS:CabinetWClass]") For $i = 1 To $aList[0][0] If $aList[$i][0] <> "" And BitAND(WinGetState($aList[$i][1]), 2) Then Local $aPart = StringSplit(WinGetText($aList[$i][1]), @LF) For $j = 1 To $aPart[0] If StringLeft($aPart[$j], 9) = "Address: " Then Local $sAddress = StringTrimLeft($aPart[$j], 9) ConsoleWrite("$sAddress=" & $sAddress & @CRLF) If $sAddress = $sPath Then Return WinClose($aList[$i][1]) EndIf Next EndIf Next Return 0 EndFunc ;==>ExitFolderWnd ; ----------------------------------------------- I know that I know nothing
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