Hi! i'm trying to use exiftoolwrapper in c# .net application on MacOs but when I try to start ExiftoolWrapper it give me the exception "Operation not permitted". Someone can help me? please
using (var etw = new ExifToolWrapper(@"/usr/local/bin/exiftool"))
{
etw.Start();
d = etw.FetchExifFrom(@"dotnet_bot.png");
}
when I do etw.Start(); start the exception
I found this (https://github.com/microsoft/vscode/issues/19664) by googling. Maybe it will help.
- Phil
Thank you, but it didn't solve my problem
Maybe this (Medium link)?
Solving 'Operation not permitted' Error in VSCode on macOS (https://medium.com/@zouyu1121/solving-operation-not-permitted-error-in-vscode-on-macos-5041db389d33)
But from the sound of it, this seems to be a Mac permissions error, not an exiftool one. Doing a Google search on "Operation not permitted Mac" pulls up a lot of possible answers.
Yes, definitely not an ExifTool issue.
- Phil
I've already tried it but it didn't work. I know maybe it's not an exiftool issue but I'm searching someone who is using exiftool in c# with MacOs and faced the same problem