Hi,
I am trying to search for a specific folder in Dropbox using `Files.SearchV2Async` function in Dropbox sdk.
The search option is set to look for only the active files/folders, but with this option set `Files.SearchV2Async` returns even the deleted folder (the result for the deleted folder has IsDeleted flag as false, while I expected this to be true).
Am I missing anything here?
SearchOptions options = new SearchOptions(path,
fileStatus: status.AsActive,
filenameOnly: searchFiles);
var res = await _client.Files.SearchV2Async(query, options);
var matchesToConsider = res.Matches?.Where(x => !x.Metadata.AsMetadata.Value.IsDeleted);