A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
AFAIK, SharePoint doesn’t really have a true “file owner notification for comments” feature the way tasks or Planner items do. Alternatives are based on alerts, rules, or Power Automate.
If the person just needs notifications when anything changes on that file (including comments saved into the document), open the file in SharePoint, click the three dots, choose “Alert me,” and configure alerts for changes. You can also create an alert from the document library and scope it to a single file. This is simple but not comment-specific because SharePoint treats many edits the same way.
If the file is a modern Office document with threaded comments (Word, Excel, PowerPoint stored in SharePoint/OneDrive), a direct way is to mention the person inside the comment using @mentions. That triggers notifications automatically and is the closest built-in “comment notification” behavior without extra setup.
If you need automatic notifications specifically when comments are added and without relying on manual mentions, use Power Automate. Create a flow triggered by file changes or when a file is modified, then add a condition that checks comment-related properties if available or sends a notification whenever the file is updated. An example trigger would be:
Trigger: When a file is modified (properties only)
Site Address: <site>
Library Name: <library>
Then add an action like:
Action: Send an email (V2)
To: <user>
Subject: File updated or commented
Body: The file <filename> was updated. Check for new comments.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin