I have this code which extract a file in C#. Let say my zip filename is ABC.zip.
ZipFile.ExtractToDirectory(_downloadPath + zipFileName, _extractPath, true);
My question is how do I get the filename after the extraction? For example, filename is ABC.xml. How do I get this ABC.xml after the above code?