Skip to content
Discussion options

You must be logged in to vote
Admin verified this answer by ReagentX Dec 10, 2025

Ok, this answers your question then. imessage-exporter scans all of the address book files that it can find:

// MARK: macOS Dirs
/// Scans the macOS Contacts Sources directory (`~/Library/Application Support/AddressBook/Sources`)
/// for AddressBook-v22.abcddb database files.
fn find_macos_addressbook_db_paths() -> Vec<PathBuf> {
let mut results = Vec::new();
if let Ok(entries) = fs::read_dir(macos_sources_dir()) {
for entry in entries.flatten() {
let path = entry.path();
if path.is_dir() {
let db_path = path.join("AddressBook-v22.abcddb");
if d…

Replies: 2 comments 16 replies

Comment options

You must be logged in to vote
12 replies
@louie96-svg
Comment options

@louie96-svg
Comment options

@louie96-svg
Comment options

@ReagentX
Comment options

@ReagentX
Comment options

Comment options

You must be logged in to vote
4 replies
@ReagentX
Comment options

Answer verified by Admin Dec 10, 2025
@ReagentX
Comment options

@louie96-svg
Comment options

@ReagentX
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants