which file belongs to which directory

let I executed the following command:
ls -lrt mdase mvfile test | grep '\.xml'
the output is :
-rw-r--r-- 1 surjya other 0 Sep 23 16:25 sample.xml
-rw-r--r-- 1 surjya other 0 Oct 5 16:11 tst2.xml
-rw-r--r-- 1 surjya other 0 Oct 5 16:12 test3.xml
-rw-r--r-- 1 surjya other 0 Oct 6 16:08 mvtest.xml
-rw-r--r-- 1 surjya other 0 Oct 6 16:08 mvtest.xml
-rw-r--r-- 1 surjya other 0 Oct 6 19:34 neha.xml

In the above output shows two mvtest.xml files. How can I know that which mvtest.xml belongs to which directory. If any command available to get it

You are the author of 2 other posts which look very similiar.

To get the file names.
to find the file with full path

I am not sure if similiarity of posts contribute towards violation of the rules.

Try this.

find . -name '*.xml' | xargs ls -lrt