Moist Posted October 11, 2018 Share Posted October 11, 2018 Hello guys, I'm working on a script that needs to search for a specific folder using a string. Basically, all the folders are numbered, but they have some string in front of that number. How can I search for a folder and return its full name or full path. Link to comment Share on other sites More sharing options...
caramen Posted October 11, 2018 Share Posted October 11, 2018 Hello , Have you looked about the FileExists Or it does not meet your requirements ?? Please post a script of what you tryed so far. My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki Link to comment Share on other sites More sharing options...
careca Posted October 11, 2018 Share Posted October 11, 2018 (edited) There are some ways, you can retrieve all folders to array and stringinstr it, or go with FileFindFirstFile Edited October 11, 2018 by careca Moist 1 Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe Link to comment Share on other sites More sharing options...
Moist Posted October 11, 2018 Author Share Posted October 11, 2018 2 minutes ago, caramen said: Hello , Have you looked about the FileExists Or it does not meet your requirements ?? Please post a script of what you tryed so far. FileExists only returns 0 and 1. I know the folder exists, but I only part of its string. I am using this script with another software and have the string , e.g., "123" and the folders are named "100_nice", "101_cool", ... "123_great", with no number being repeated. How do I get the full path to the "123_great"? Link to comment Share on other sites More sharing options...
careca Posted October 11, 2018 Share Posted October 11, 2018 1 minute ago, Moist said: How do I get the full path to the "123_great"? Use wildcard with filefindfirstfile Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe Link to comment Share on other sites More sharing options...
caramen Posted October 11, 2018 Share Posted October 11, 2018 How are you finding these files yourself ? WIndows search ? My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki Link to comment Share on other sites More sharing options...
caramen Posted October 11, 2018 Share Posted October 11, 2018 (edited) Oh... Yeah no doubt filefindfirstfile @careca had it for you $hSearch = FileFindFirstFile("*.*") $sFileName = "" $sFileName = FileFindNextFile($hSearch) Edited October 11, 2018 by caramen Moist 1 My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki Link to comment Share on other sites More sharing options...
Moist Posted October 11, 2018 Author Share Posted October 11, 2018 What exactly does Filefindfirstfile do? Will it search in the first file of a directory? How exactly can I have the filename and path. $hSearch = FileFindFirstFile("C:\Directory\123*") $sFileName = "" $sFileName = FileFindNextFile($hSearch) Is this enough ? Link to comment Share on other sites More sharing options...
Moist Posted October 11, 2018 Author Share Posted October 11, 2018 Oh, yeah, It works. Thanks everything for your help Link to comment Share on other sites More sharing options...
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