Hi,
I want to search *.cpp files in current directory and want to save the file name in *.TXT file. I did this by using the Batch command
dir |find ".cpp" > Listfile.txt
But there I am getting file name with entire paramenters like created date and size.
My need is I want only file name
Current output
06/25/2010 06:17 PM 950 4mLinuxMachine.cpp
06/28/2010 03:41 PM 4,236 Linux11.cpp
Need Output
4mLinuxMachine.cpp
Linux11.cpp
Please help Thanks