I need to extricate the file extension from the file paths. For Eg: I have a file path like:
\\Test\data\data.dll
How to remove the data.dll from the file path, so that I get only
\\Test\data\
as the output.
I tried using the wild character - *. but that didn't work.
Thanks!