在搜索子文件夹及其子项上的图像时遇到问题。搜索文本文件时似乎没有出现同样的问题。
示例:我的OneDrive看起来像这样:
Root/ subdirectory/ image.png textfile.txt
如果我查询:
/me/drive/items/{id-of-subdirectory}/search(q='textfile')
我的结果将包含我正在搜索的文件(添加了子目录本身):
"value": [
{
"id": "id-of-subdirectory",
"name": "subdirectory"
},
{
"id": "id-of-textfile.txt",
"name": "textfile.txt"
}
]
但如果我查询图片:
/me/drive/items/{id-of-subdirectory}/search(q='image')
我的结果不包含图片(只有子目录)
"value": [
{
"id": "id-of-subdirectory",
"name": "subdirectory"
}
]
是否有人知道图片未显示在搜索结果中的原因?
是否有其他方法可以对特定子文件夹及其子项进行搜索?