Here is code snippet:
glob.glob('C:\\intelFPGA\\*')
['C:\\intelFPGA\\17.1', 'C:\\intelFPGA\\18.0', 'C:\\intelFPGA\\18.1', 'C:\\intelFPGA\\20.0', 'C:\\intelFPGA\\9.2']
I need a method that will return the path string that has the latest version number which is 18.1 in this case. Is there a built in way to do this or am I limited to doing string manipulation to achieve this i.e a custom solution?