Search code examples
xcopy

XCOPY without the message about how many files were copied?


I want to see messages about which files are being copied using XCOPY, but suppress the final message about how many files were copied ("File(s) copied")

Any idea?


Solution

  • thanks to @doynax. the answer to my question is to pipe

    findstr /l /v "File(s) copied"
    

    to XCOPY