Here are the before and after states. The application is called Postal.
lsof output while the app is running
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
Path\\x20F 494 momiccioli 89r DIR 1,4 256 963727 .
Path\\x20F 494 momiccioli 90r DIR 1,4 256 963729 ./DebugPostal
bash 5963 momiccioli cwd DIR 1,4 256 963727 .
mdworker 47750 momiccioli 3r REG 1,4 6148 963728 ./.DS_Store
mdworker 47751 momiccioli 3r REG 1,4 6148 963728 ./.DS_Store
mdworker 47753 momiccioli 3r REG 1,4 6148 963728 ./.DS_Store
Postal.de 47861 momiccioli txt REG 1,4 3446488 2292665 ./Postal.debug.app/Contents/MacOS/Postal.debug
Postal.de 47861 momiccioli txt REG 1,4 11887744 2292679 ./Postal.debug.app/Contents/Frameworks/XojoFramework.framework/Versions/A/XojoFramework
Postal.de 47861 momiccioli txt REG 1,4 439104 2292848 ./Postal.debug.app/Contents/Frameworks/Crypto.dylib
Postal.de 47861 momiccioli txt REG 1,4 22480 2292849 ./Postal.debug.app/Contents/Frameworks/InternetEncodings.dylib
Postal.de 47861 momiccioli txt REG 1,4 32896 2292850 ./Postal.debug.app/Contents/Frameworks/Shell.dylib
Postal.de 47861 momiccioli txt REG 1,4 893552 2292851 ./Postal.debug.app/Contents/Frameworks/SQLiteDatabase.dylib
Postal.de 47861 momiccioli txt REG 1,4 1807088 2292852 ./Postal.debug.app/Contents/Frameworks/SSLSocket.dylib
sudo 47942 root cwd DIR 1,4 256 963727 .
lsof 47944 root cwd DIR 1,4 256 963727 .
lsof 47945 root cwd DIR 1,4 256 963727 .
lsof output after app is closed
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
Path\\x20F 494 momiccioli 89r DIR 1,4 256 963727 .
Path\\x20F 494 momiccioli 90r DIR 1,4 256 963729 ./DebugPostal
bash 5963 momiccioli cwd DIR 1,4 256 963727 .
mdworker 47750 momiccioli 3r REG 1,4 6148 963728 ./.DS_Store
mdworker 47751 momiccioli 3r REG 1,4 6148 963728 ./.DS_Store
mdworker 47753 momiccioli 3r REG 1,4 6148 963728 ./.DS_Store
sudo 47955 root cwd DIR 1,4 256 963727 .
lsof 47956 root cwd DIR 1,4 256 963727 .
lsof 47957 root cwd DIR 1,4 256 963727 .
The file that is preventing the application from running again is Postal.debug.app. Interestingly it does not show up in the lsof after exiting the app. I do see the directory DebugPostal is listed but not the application file.
Am I reading this incorrectly?