我正在尝试使用 Google Drive python 客户端来选择所有具有 mimeType audio/mpeg OR audio/flac OR audio/ogg 的文件类型。这如何在单个查询中完成?我试过了:
files = drive.files().list().setQ("mimeType='audio/mpeg OR mimeType='audio/flac'").execute()
但是这个请求未能产生正确的结果。
我正在尝试使用 Google Drive python 客户端来选择所有具有 mimeType audio/mpeg OR audio/flac OR audio/ogg 的文件类型。这如何在单个查询中完成?我试过了:
files = drive.files().list().setQ("mimeType='audio/mpeg OR mimeType='audio/flac'").execute()
但是这个请求未能产生正确的结果。