clalancette / pycdlib

Python library to read and write ISOs
GNU Lesser General Public License v2.1
143 stars 38 forks source link

How do I get a full name? #112

Open cnkizy opened 1 year ago

cnkizy commented 1 year ago
iso = OpenISO(path)
for child in iso.list_children(iso_path='/'):
    short_name = child.file_identifier()
    print(short_name)

I can only get the short file name from the instance, so what do I do if I want to get the full name?