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"
exit
What would I put in to run that macro?
Search found 1 match
- Fri Oct 01, 2010 8:33 pm
- Forum: General
- Topic: Adding a TextPad macro in my Batch File
- Replies: 2
- Views: 2107