ExifTool Forum

ExifTool => Developers => Topic started by: nella on June 24, 2024, 11:58:27 AM

Title: ExiftoolWrapper permission denied
Post by: nella on June 24, 2024, 11:58:27 AM
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
Title: Re: ExiftoolWrapper permission denied
Post by: Phil Harvey on June 24, 2024, 12:42:21 PM
I found this (https://github.com/microsoft/vscode/issues/19664) by googling.  Maybe it will help.

- Phil
Title: Re: ExiftoolWrapper permission denied
Post by: nella on June 25, 2024, 09:21:21 AM
Thank you, but it didn't solve my problem
Title: Re: ExiftoolWrapper permission denied
Post by: StarGeek on June 25, 2024, 10:22:51 AM
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.
Title: Re: ExiftoolWrapper permission denied
Post by: Phil Harvey on June 25, 2024, 10:38:36 AM
Yes, definitely not an ExifTool issue.

- Phil
Title: Re: ExiftoolWrapper permission denied
Post by: nella on June 25, 2024, 11:34:37 AM
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