I have a batch file that gives me a directory listing of al the files in a certain folder and I want it to run a macro that I have set up in TextPad. So far I have: @echo off
dir %1 /b /-p /o:gn > "c:\Listing.txt"
start /w textpad "c:\Listing.txt"
exitWhat would I put in to run that macro?
Unless TextPad has a command line option to execute scripts, you cannot though batch files.
Which way would you recommend? I just need to create a directory listing and then be able to run a macro.
I'll throw out three options:
1) Do whatever text editing you need to do with a free command line program
2) Modify the output of your listing to get the file you need without editing.
3) Ask the TextPad forum. They might know the command line option you need.
Thanks for the response. I think I'm going to use a different editor. Have a good one.
Yes (14) | ![]() | |
No (14) | ![]() | |
I don't know (15) | ![]() |