pycdlib
pycdlib copied to clipboard
Python library to read and write ISOs
I am trying to set interchange_level=3 into iso.new method (files bigger than 4GB), but now i am getting AttributeError: orig_extent_loc from return self.orig_extent_loc (\pycdlib\inode.py", line 114, in extent_location). My line...
This PR aims to fix the issue described here: https://github.com/clalancette/pycdlib/issues/109. There seems to be a default encoding of `utf-8` at many places which causes an error if `shift_jis` is required....
Hello! From https://en.wikipedia.org/wiki/Talk%3AJoliet_(file_system), the name limit is 128 bytes? Unable to pack Kylin linux OS for the 64 chars error. `Joliet does extend ISO 9660 as regards file/directory name length...
Got this exception when pycdlib parsing a MAC app ISO. pycdlib understands that the ISO has rock_ridge but it's actually not. In _set_rock_ridge(), self.rock_ridge is not updated when rr ==...
Hello @clalancette , @zekaizer , @ticky , I've been trying to read/load data from a json within an iso file. Using listchildren method I can see that the file is...
The bug was recorded back in https://github.com/clalancette/pycdlib/pull/71#issuecomment-879556612. After some debugging, I figured out the cause. When modifying the file in place, the library will try to update the file length...
`python.exe genisoimage.py -v -iso-level 1 -no-pad -b boot -c boot.cat -b EFI/BOOT/BOOTAA64.EFI -b images/efiboot.img -no-emul-boot -allow-lowercase -o onedir.iso D:\tmp\onedir` I want to use genisoimage.py to replace `genisoimage.exe` but get error...
Hi, When I delete a folder using the `rm_folder()` function the script raises an `Exception` when the `iso.write(destination)` is called. It doesn't happen for every single directory, but most of...
afaik, there is no way to create reproducible UDF images with [mkudffs](https://github.com/pali/udftools) or the [linux udf driver](https://www.kernel.org/doc/html/latest/filesystems/udf.html), because i cannot set file times to zero i can create a reproducible...
please add example on how to add actual files to an image a naive attempt fails with `ValueError: seek of closed file` ```py input_paths = ["test.txt"] output_path = "test.iso" iso...