Feel free re quote.
I think Sync Report will work. I’m seeing a bunch of files that say they are not imported but when I look at the info
it doesn’t show any rejection.
FWIW this is what I’m doing now:
find "/Desktop/Pictures/Batch 1" -type f | sort > ./all.txt
./photostructure list | grep -E "^/Desktop/" | sort > ./imported.txt
echo “Total Issues:”
comm -2 -3 all.txt imported.txt| wc -l
echo “Known Issues unwanted, Unimportable, etc. :”
comm -2 -3 all.txt imported.txt| grep -e "ini" -e "db" -e "xmp" -e "gz" -e "psd" -e "txt" -e "DS_Store" -e “pto” -e “tiff” | wc -l
echo “PSD, TXT, TIFF and PTO Files to move:”
comm -2 -3 all.txt imported.txt| grep -e "psd" -e "txt" -e “tiff” -e”pto” | sort > ./1-Files_to_Move_Manually.txt
comm -2 -3 all.txt imported.txt| grep -e "psd" -e "txt" -e “tiff” -e”pto”| wc -l
echo “Burst Shots and Other Non Imports”
comm -2 -3 all.txt imported.txt| grep -v -e "ini" -e "db" -e "xmp" -e "gz" -e "psd" -e "txt" -e "DS_Store" -e “pto” -e “tiff” | > ./3-Potenial_Burst_Shots_not_imported.txt
comm -2 -3 all.txt imported.txt| grep -v -e "ini" -e "db" -e "xmp" -e "gz" -e "psd" -e "txt" -e "DS_Store" -e “pto” -e “tiff” | wc -l
The output is
“Total Issues:”
12331
“Known Issues unwanted, Unimportable, etc. :”
11417
“PSD, TXT, TIFF and PTO Files to move:”
46
“Burst Shots and Other Non Imports”
914
Looking into will take some time but a big chunk seem to be from “Burst Mode” style shooting.
I suspect some of the upcoming items around handling custom file types; Burstmode and cleaning up after import will help.