Exec.FindFiles
Description
- Shows the Windows Find Files dialog.
Syntax
Examples
- Exec.FindFiles
- Opens a Find Files dialog.
- Exec.FindFiles
Wait.For(1500)
Win.Keys("%n*.txt")- Opens a Find Files dialog & sets the "Named" field to "*.txt".
- Exec.FindFiles
Wait.For(1500)
Win.Keys("%lc:\path;d:\p2%n*.txt")- Opens a Find Files dialog, setting the "Look In" field to "c:\path;d:\p2" & the "Named" field to "*.txt".
Notes
- Follow an Exec.FindFiles call with a Win.Keys() command to initialise dialog fields, as in the examples above.