Thanks Quinn. I'll keep an eye on that page. From what I see, the last updated agreements were on October 23, 2024 and we started getting denied on November 7th so if I can check that page once a week or so that sounds like a workable process for us.
Post
Replies
Boosts
Views
Activity
Hi Quinn, thanks for looking into this!
We are using C++ and the calls are:
std::filesystem::rename (where possible)
std::filesystem::copy (when necessary)
These are always called on individual files (not directories), but we also use this to create the parent dest directory if necessary:
std::filesystem::create_directories
After some more investigation this could be a problem only when we had an app in that place before. For example, we copy to /Applications/Test/MyApp.app on a new system, then we delete that folder and do it again later (but likely MyApp.app is now newer and different from the original one), and that's where I'm seeing this.
I haven't 100% confirmed the above but it seems to happen in that one case, but when I try on a new folder (eg /Applications/Test001/MyApp.app) so far it hasn't happened, so it might be a part of this and I wanted to mention it at least.
Thanks again for your time, it's very much appreciated!