Hi, I'm using Ultraedit to write Robocopy batch scripts. I start my batch files pasting a list of directories (that I copy on my file manager) as :
C:\Windows
C:\Program Files\Opera
Macro should copy the name of present directory or subdirectory to clipboard :
The problem that I've found is that I don't know how to configure my macro to find backward for "\" to be able to use :
May you help me ? , thanks.
C:\Windows
C:\Program Files\Opera
Macro should copy the name of present directory or subdirectory to clipboard :
Code: Select all
C:\Windows macro must copy to clipboard "Windows"
C:\Program Files\Opera macro must copy to clipboard "Opera"
Code: Select all
Key END
Find BACKWARD "\" <-- PROBLEM
Key LEFT ARROW
Key RIGHT ARROW
StartSelect
Key END
Copy
EndSelect
Key DOWN ARROW