Hello,, I am not a regular programmer..
Is there a batch file to copy only one txt file to a dir (C:\test) from a collection of txt files in (C:\error_logs irrespective of their file name.. ie..(some_name.txt from *.txt)
please help..
thanx in advance
Your request is quite unclear since to copy just one file what is needed is to issue the command copy "C:\error_logs\some_name.txt" "C:\test"
Looks like you are trying to pull the names in from an error log? Is the goal to pass the information from the error log to the batch file. for example in psudo code sort.bat < error.log
move whatever.txt c:\fileswitherrors\whatever.txt:: mike
