回答:
org-9では、ファイルリンクの場合、次のように簡単な場合があります。
(org-link-set-parameters
"file"
:face (lambda (path) (if (file-exists-p path) 'org-link 'org-warning)))
内部リンクの場合、簡単な方法はわかりません。
file-remote-p
仕事をするように思われ、。:私は、次のようにコードを修正しました(org-link-set-parameters "file" :face (lambda (path) (when (not (file-remote-p path))(if (file-exists-p path) 'org-link 'org-warning))))