How do you extract the raw bytes and metadata of a file? What is a typical use case for this? A) Using the os.stat() function to get metadata; Use cases include file manipulation and organization. B) Using the open() method with the 'rb' mode; Use cases include data compression and encryption. C) Using the shutil module for file operations; Use cases include data transfer and backup. D) Using the bytes() constructor; Use cases include data serialization and encoding.