get files list of particular mimetype in specified directory
I'm successfully getting files in specified directory using request:
GET https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents
(but it includes files of all mimetypes).
Also I'm successfully getting files of specified mimetype using request:
GET https://www.googleapis.com/drive/v3/files?q=mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
(but it includes files of all my directories).
Now how do I get files of particular mimetype in specified directory? I tried something like
GET https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents&mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
or
GET https://www.googleapis.com/drive/v3/files?q=mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27&"1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents
though it considers only the first parameter, but not both parameters. Please advise.
google-drive-sdk
add a comment |
I'm successfully getting files in specified directory using request:
GET https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents
(but it includes files of all mimetypes).
Also I'm successfully getting files of specified mimetype using request:
GET https://www.googleapis.com/drive/v3/files?q=mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
(but it includes files of all my directories).
Now how do I get files of particular mimetype in specified directory? I tried something like
GET https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents&mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
or
GET https://www.googleapis.com/drive/v3/files?q=mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27&"1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents
though it considers only the first parameter, but not both parameters. Please advise.
google-drive-sdk
add a comment |
I'm successfully getting files in specified directory using request:
GET https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents
(but it includes files of all mimetypes).
Also I'm successfully getting files of specified mimetype using request:
GET https://www.googleapis.com/drive/v3/files?q=mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
(but it includes files of all my directories).
Now how do I get files of particular mimetype in specified directory? I tried something like
GET https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents&mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
or
GET https://www.googleapis.com/drive/v3/files?q=mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27&"1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents
though it considers only the first parameter, but not both parameters. Please advise.
google-drive-sdk
I'm successfully getting files in specified directory using request:
GET https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents
(but it includes files of all mimetypes).
Also I'm successfully getting files of specified mimetype using request:
GET https://www.googleapis.com/drive/v3/files?q=mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
(but it includes files of all my directories).
Now how do I get files of particular mimetype in specified directory? I tried something like
GET https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents&mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
or
GET https://www.googleapis.com/drive/v3/files?q=mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27&"1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents
though it considers only the first parameter, but not both parameters. Please advise.
google-drive-sdk
google-drive-sdk
asked Nov 21 '18 at 20:34
marcomarco
205
205
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
For initial question: (Solved)
- You want to retrieve the files with the specific mimeType in a specific folder.
If my understanding is correct, for query, how about modifying as follows? Please use and
for your case.
'1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD' in parents and mimeType='application/vnd.google-apps.spreadsheet'
So can you try to use as following endpoint?
GET https://www.googleapis.com/drive/v3/files?q=%271bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD%27%20in%20parents%20and%20mimeType%3d%27application%2fvnd%2egoogle%2dapps%2espreadsheet%27
Reference:
- Search for Files
If I misunderstand your issue, please tell me. I would like to modify it.
For 2nd question: (Solved)
For example, if you want to retrieve files from 2 folders, please use the following query. In this case, files from folder ID 1 and folder ID 2 are retrieved.
'### folder ID 1 ###' in parents or '### folder ID 2 ###' in parents
For 3rd question: (Solved)
When you want to retrieve files with the mimeType of application/vnd.google-apps.spreadsheet
in several folders, please try to use the following query.
('1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD' in parents or '1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm' in parents) and mimeType='application/vnd.google-apps.spreadsheet'
For 4th question: (Solved)
Unfortunately, the file list cannot be directly retrieved by the folder name using the query. Because the same folder names can be existing in Google Drive. So it is required to use the following flow.
Convert the folder name to folder ID using the following query. If several folders are included in the result, please retrieve one of them.
name='### folder name ###' and mimeType='application/vnd.google-apps.folder' and trashed=false
Retrieve file list using the converted folder ID. You can use the query from 1st to 3rd answer.
Thanks Tanaike! It worked for me with and keyword. Just in case, here is my full url (not all symbols need to be urlencoded)https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
– marco
Nov 22 '18 at 10:47
Is there any way to set multiple folders btw?
– marco
Nov 22 '18 at 11:11
@marco I'm really sorry for the inconvenience. For your new question, I updated my answer. Could you please confirm it?
– Tanaike
Nov 22 '18 at 22:47
No problem, I guess the need to encode particular symbols depends on environment.
– marco
Nov 23 '18 at 10:28
Now regardingor
keyword. Right now it does not work as it should, when I try to combineor
withand
keywords. For example, my urlhttps://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+or+"1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
returns spreadsheets from needed two directories, but it also returns doc that I don't want. So.. how do I set conditions like((folder1 or folder2) and mimetype=something)
? Brackets are important here. Please advise.
– marco
Nov 23 '18 at 10:28
|
show 13 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420093%2fget-files-list-of-particular-mimetype-in-specified-directory%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
For initial question: (Solved)
- You want to retrieve the files with the specific mimeType in a specific folder.
If my understanding is correct, for query, how about modifying as follows? Please use and
for your case.
'1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD' in parents and mimeType='application/vnd.google-apps.spreadsheet'
So can you try to use as following endpoint?
GET https://www.googleapis.com/drive/v3/files?q=%271bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD%27%20in%20parents%20and%20mimeType%3d%27application%2fvnd%2egoogle%2dapps%2espreadsheet%27
Reference:
- Search for Files
If I misunderstand your issue, please tell me. I would like to modify it.
For 2nd question: (Solved)
For example, if you want to retrieve files from 2 folders, please use the following query. In this case, files from folder ID 1 and folder ID 2 are retrieved.
'### folder ID 1 ###' in parents or '### folder ID 2 ###' in parents
For 3rd question: (Solved)
When you want to retrieve files with the mimeType of application/vnd.google-apps.spreadsheet
in several folders, please try to use the following query.
('1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD' in parents or '1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm' in parents) and mimeType='application/vnd.google-apps.spreadsheet'
For 4th question: (Solved)
Unfortunately, the file list cannot be directly retrieved by the folder name using the query. Because the same folder names can be existing in Google Drive. So it is required to use the following flow.
Convert the folder name to folder ID using the following query. If several folders are included in the result, please retrieve one of them.
name='### folder name ###' and mimeType='application/vnd.google-apps.folder' and trashed=false
Retrieve file list using the converted folder ID. You can use the query from 1st to 3rd answer.
Thanks Tanaike! It worked for me with and keyword. Just in case, here is my full url (not all symbols need to be urlencoded)https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
– marco
Nov 22 '18 at 10:47
Is there any way to set multiple folders btw?
– marco
Nov 22 '18 at 11:11
@marco I'm really sorry for the inconvenience. For your new question, I updated my answer. Could you please confirm it?
– Tanaike
Nov 22 '18 at 22:47
No problem, I guess the need to encode particular symbols depends on environment.
– marco
Nov 23 '18 at 10:28
Now regardingor
keyword. Right now it does not work as it should, when I try to combineor
withand
keywords. For example, my urlhttps://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+or+"1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
returns spreadsheets from needed two directories, but it also returns doc that I don't want. So.. how do I set conditions like((folder1 or folder2) and mimetype=something)
? Brackets are important here. Please advise.
– marco
Nov 23 '18 at 10:28
|
show 13 more comments
For initial question: (Solved)
- You want to retrieve the files with the specific mimeType in a specific folder.
If my understanding is correct, for query, how about modifying as follows? Please use and
for your case.
'1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD' in parents and mimeType='application/vnd.google-apps.spreadsheet'
So can you try to use as following endpoint?
GET https://www.googleapis.com/drive/v3/files?q=%271bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD%27%20in%20parents%20and%20mimeType%3d%27application%2fvnd%2egoogle%2dapps%2espreadsheet%27
Reference:
- Search for Files
If I misunderstand your issue, please tell me. I would like to modify it.
For 2nd question: (Solved)
For example, if you want to retrieve files from 2 folders, please use the following query. In this case, files from folder ID 1 and folder ID 2 are retrieved.
'### folder ID 1 ###' in parents or '### folder ID 2 ###' in parents
For 3rd question: (Solved)
When you want to retrieve files with the mimeType of application/vnd.google-apps.spreadsheet
in several folders, please try to use the following query.
('1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD' in parents or '1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm' in parents) and mimeType='application/vnd.google-apps.spreadsheet'
For 4th question: (Solved)
Unfortunately, the file list cannot be directly retrieved by the folder name using the query. Because the same folder names can be existing in Google Drive. So it is required to use the following flow.
Convert the folder name to folder ID using the following query. If several folders are included in the result, please retrieve one of them.
name='### folder name ###' and mimeType='application/vnd.google-apps.folder' and trashed=false
Retrieve file list using the converted folder ID. You can use the query from 1st to 3rd answer.
Thanks Tanaike! It worked for me with and keyword. Just in case, here is my full url (not all symbols need to be urlencoded)https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
– marco
Nov 22 '18 at 10:47
Is there any way to set multiple folders btw?
– marco
Nov 22 '18 at 11:11
@marco I'm really sorry for the inconvenience. For your new question, I updated my answer. Could you please confirm it?
– Tanaike
Nov 22 '18 at 22:47
No problem, I guess the need to encode particular symbols depends on environment.
– marco
Nov 23 '18 at 10:28
Now regardingor
keyword. Right now it does not work as it should, when I try to combineor
withand
keywords. For example, my urlhttps://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+or+"1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
returns spreadsheets from needed two directories, but it also returns doc that I don't want. So.. how do I set conditions like((folder1 or folder2) and mimetype=something)
? Brackets are important here. Please advise.
– marco
Nov 23 '18 at 10:28
|
show 13 more comments
For initial question: (Solved)
- You want to retrieve the files with the specific mimeType in a specific folder.
If my understanding is correct, for query, how about modifying as follows? Please use and
for your case.
'1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD' in parents and mimeType='application/vnd.google-apps.spreadsheet'
So can you try to use as following endpoint?
GET https://www.googleapis.com/drive/v3/files?q=%271bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD%27%20in%20parents%20and%20mimeType%3d%27application%2fvnd%2egoogle%2dapps%2espreadsheet%27
Reference:
- Search for Files
If I misunderstand your issue, please tell me. I would like to modify it.
For 2nd question: (Solved)
For example, if you want to retrieve files from 2 folders, please use the following query. In this case, files from folder ID 1 and folder ID 2 are retrieved.
'### folder ID 1 ###' in parents or '### folder ID 2 ###' in parents
For 3rd question: (Solved)
When you want to retrieve files with the mimeType of application/vnd.google-apps.spreadsheet
in several folders, please try to use the following query.
('1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD' in parents or '1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm' in parents) and mimeType='application/vnd.google-apps.spreadsheet'
For 4th question: (Solved)
Unfortunately, the file list cannot be directly retrieved by the folder name using the query. Because the same folder names can be existing in Google Drive. So it is required to use the following flow.
Convert the folder name to folder ID using the following query. If several folders are included in the result, please retrieve one of them.
name='### folder name ###' and mimeType='application/vnd.google-apps.folder' and trashed=false
Retrieve file list using the converted folder ID. You can use the query from 1st to 3rd answer.
For initial question: (Solved)
- You want to retrieve the files with the specific mimeType in a specific folder.
If my understanding is correct, for query, how about modifying as follows? Please use and
for your case.
'1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD' in parents and mimeType='application/vnd.google-apps.spreadsheet'
So can you try to use as following endpoint?
GET https://www.googleapis.com/drive/v3/files?q=%271bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD%27%20in%20parents%20and%20mimeType%3d%27application%2fvnd%2egoogle%2dapps%2espreadsheet%27
Reference:
- Search for Files
If I misunderstand your issue, please tell me. I would like to modify it.
For 2nd question: (Solved)
For example, if you want to retrieve files from 2 folders, please use the following query. In this case, files from folder ID 1 and folder ID 2 are retrieved.
'### folder ID 1 ###' in parents or '### folder ID 2 ###' in parents
For 3rd question: (Solved)
When you want to retrieve files with the mimeType of application/vnd.google-apps.spreadsheet
in several folders, please try to use the following query.
('1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD' in parents or '1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm' in parents) and mimeType='application/vnd.google-apps.spreadsheet'
For 4th question: (Solved)
Unfortunately, the file list cannot be directly retrieved by the folder name using the query. Because the same folder names can be existing in Google Drive. So it is required to use the following flow.
Convert the folder name to folder ID using the following query. If several folders are included in the result, please retrieve one of them.
name='### folder name ###' and mimeType='application/vnd.google-apps.folder' and trashed=false
Retrieve file list using the converted folder ID. You can use the query from 1st to 3rd answer.
edited Nov 26 '18 at 22:35
answered Nov 21 '18 at 23:08


TanaikeTanaike
22.2k21123
22.2k21123
Thanks Tanaike! It worked for me with and keyword. Just in case, here is my full url (not all symbols need to be urlencoded)https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
– marco
Nov 22 '18 at 10:47
Is there any way to set multiple folders btw?
– marco
Nov 22 '18 at 11:11
@marco I'm really sorry for the inconvenience. For your new question, I updated my answer. Could you please confirm it?
– Tanaike
Nov 22 '18 at 22:47
No problem, I guess the need to encode particular symbols depends on environment.
– marco
Nov 23 '18 at 10:28
Now regardingor
keyword. Right now it does not work as it should, when I try to combineor
withand
keywords. For example, my urlhttps://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+or+"1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
returns spreadsheets from needed two directories, but it also returns doc that I don't want. So.. how do I set conditions like((folder1 or folder2) and mimetype=something)
? Brackets are important here. Please advise.
– marco
Nov 23 '18 at 10:28
|
show 13 more comments
Thanks Tanaike! It worked for me with and keyword. Just in case, here is my full url (not all symbols need to be urlencoded)https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
– marco
Nov 22 '18 at 10:47
Is there any way to set multiple folders btw?
– marco
Nov 22 '18 at 11:11
@marco I'm really sorry for the inconvenience. For your new question, I updated my answer. Could you please confirm it?
– Tanaike
Nov 22 '18 at 22:47
No problem, I guess the need to encode particular symbols depends on environment.
– marco
Nov 23 '18 at 10:28
Now regardingor
keyword. Right now it does not work as it should, when I try to combineor
withand
keywords. For example, my urlhttps://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+or+"1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
returns spreadsheets from needed two directories, but it also returns doc that I don't want. So.. how do I set conditions like((folder1 or folder2) and mimetype=something)
? Brackets are important here. Please advise.
– marco
Nov 23 '18 at 10:28
Thanks Tanaike! It worked for me with and keyword. Just in case, here is my full url (not all symbols need to be urlencoded)
https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
– marco
Nov 22 '18 at 10:47
Thanks Tanaike! It worked for me with and keyword. Just in case, here is my full url (not all symbols need to be urlencoded)
https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
– marco
Nov 22 '18 at 10:47
Is there any way to set multiple folders btw?
– marco
Nov 22 '18 at 11:11
Is there any way to set multiple folders btw?
– marco
Nov 22 '18 at 11:11
@marco I'm really sorry for the inconvenience. For your new question, I updated my answer. Could you please confirm it?
– Tanaike
Nov 22 '18 at 22:47
@marco I'm really sorry for the inconvenience. For your new question, I updated my answer. Could you please confirm it?
– Tanaike
Nov 22 '18 at 22:47
No problem, I guess the need to encode particular symbols depends on environment.
– marco
Nov 23 '18 at 10:28
No problem, I guess the need to encode particular symbols depends on environment.
– marco
Nov 23 '18 at 10:28
Now regarding
or
keyword. Right now it does not work as it should, when I try to combine or
with and
keywords. For example, my url https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+or+"1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
returns spreadsheets from needed two directories, but it also returns doc that I don't want. So.. how do I set conditions like ((folder1 or folder2) and mimetype=something)
? Brackets are important here. Please advise.– marco
Nov 23 '18 at 10:28
Now regarding
or
keyword. Right now it does not work as it should, when I try to combine or
with and
keywords. For example, my url https://www.googleapis.com/drive/v3/files?q="1bmCj4FYUVVuxq6sUnGFKrizAjwtbq7XD"+in+parents+or+"1QR_Thw-5xZmGVZAkUeeDXQ4KhA55t2Pm"+in+parents+and+mimeType%3D%27application%2Fvnd.google-apps.spreadsheet%27
returns spreadsheets from needed two directories, but it also returns doc that I don't want. So.. how do I set conditions like ((folder1 or folder2) and mimetype=something)
? Brackets are important here. Please advise.– marco
Nov 23 '18 at 10:28
|
show 13 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420093%2fget-files-list-of-particular-mimetype-in-specified-directory%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown