Access Iphone file in arch linux computer

First install following packages

sudo pacman -Sy ifuse usbmuxd libplist libimobiledevice

Then reboot the system

Then make directory a to mount the files

mkdir ~/iPhone

Use the ifuse to mount the Iphone

ifuse ~/iPhone

If you want to mount specific application folder , run following command to identify the mount details

ideviceinstaller -l

If I want to mount Browser app folder , I have to run following

ifuse --documents com.eilvera.idwl ~/Browser/
vasan