glob.glob(file_naming)
Doing this gives me two files:
['/srv/tmp/what/123_aaa_bbb_20190110043711.XML',
'/srv/tmp/what/234_xxx_yyy_20190110043710.XML']
How can I sort them in order of the last part( 20190110043711)? I need a result like:
['/srv/tmp/what/123_aaa_bbb_20190110043710.XML',
'/srv/tmp/what/234_xxx_yyy_20190110043711.XML']