pycdlib icon indicating copy to clipboard operation
pycdlib copied to clipboard

Python library to read and write ISOs

Results 38 pycdlib issues
Sort by recently updated
recently updated
newest added

``` 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...

Good day, i don´t have any problem creating the ISO with directories and files, but some filenames have a ';' in its name but the validation in line 119 (def...

I want to get the file size in the ISO file. Is there an API that can do that?

Exact same as last time (see #101) except this time it barfs on directory names that are Shift-JIS encoded (because of course those are as well) my python code: ```python...

I would like to find position and size of vmlinuz and initrd image from an iso image. I tried booting ISO image from UEFI boot, but it seems the boot...

`add_file` is not keeping files' original datetime. I quickly checked the source code, it looks like they are all using time.time(), instead of the mtime of the added file.

**UPD:** I guess in 2024 pure ISO files are not very common, so for getting nice file names out it would be awesome to showcase auto-detection or use of `joliet_path`...

I was trying to write a script to verify the correctness of iso files. Most importantly to find out if they were truncated. My idea was to extract each file...