i know the to compare files in 2 folder in window can use command fc [path A]* [path B]*
but if i want to compare filename only, what parameter i need to add or any other command in windows cmd prompt?
i know the to compare files in 2 folder in window can use command fc [path A]* [path B]*
but if i want to compare filename only, what parameter i need to add or any other command in windows cmd prompt?
to get differences (different file names) in two folders, you can use
robocopy
:/L
does only list the files instead of copying. For the rest of the options, seerobocopy /?
(/mir
to compare two folders,/n*
to suppress unneeded information)