I have a file called "ABC_file1.docx".
Performing this search I can find my file:
var fileName = "ABC_file1.docx";
var files = _graphClient
.Drives[<My_Drive_ID>]
.Root
.ItemWithPath("My_Sub_Folder")
.Search(fileName)
.Request()
.GetAsync()
.Result;
This also works if I search a file called "ABC_ABC_file1.docx", but this is an issue for me.
How can I search for exact match?