इस पेज में किसी खास लेबल या फ़ील्ड वैल्यू वाली फ़ाइलों को खोजने का तरीका बताया गया है लागू किया गया.
लेबल फ़ील्ड के टाइप
Google Drive के लेबल फ़ील्ड को हर टाइप के साथ अच्छे से लिखा जाता है को अलग-अलग तरह से इंडेक्स किया जा सकता है. नीचे दी गई टेबल में, डेटा टाइप.
टाइप | लेबल टाइप के विकल्प | इस्तेमाल किए जा सकने वाले खोज ऑपरेटर |
---|---|---|
टेक्स्ट | TextOptions | is null, is not null, =, contains, starts with |
लंबा लेख | LongTextOptions | is null, is not null, contains |
पूर्णांक | IntegerOptions | is null, is not null, =, !=, <, >, <=, >= |
तारीख | DateOptions | is null, is not null, =, !=, <, >, <=, >= |
चुनें | SelectionOptions | is null, is not null, =, != |
उपयोगकर्ता | UserOptions | is null, is not null, =, != |
चयन सूची | चुनने के विकल्प (max_entries > 1 के साथ) | is null, is not null, in, not in |
उपयोगकर्ता सूची | UserOptions (max_entries > 1 के साथ) | is null, is not null, in, not in |
उदाहरण खोजें
1. लेबल या फ़ील्ड की मौजूदगी के आधार पर खोजना
उन आइटम को खोजा जा सकता है जिन पर कोई खास लेबल लागू किया गया है (या नहीं किया गया है):
'labels/contract' in labels
not 'labels/contract' in labels
आपके पास वे आइटम भी खोजने का विकल्प है जहां कोई खास फ़ील्ड सेट किया गया है या सेट नहीं किया गया है:
labels/contract.comment IS NOT NULL
labels/contract.comment IS NULL
2. एक वैल्यू वाले फ़ील्ड के आधार पर खोजें
अनुमानित फ़ील्ड वैल्यू से मैच करने के लिए, खोज क्वेरी लिखी जा सकती हैं. नीचे दी गई टेबल मान्य फ़ील्ड क्वेरी दिखाता है:
आपको क्या क्वेरी करनी है | क्वेरी स्ट्रिंग |
---|---|
ऐसे आइटम जिनमें टिप्पणी "हैलो" पर सेट है | labels/contract.comment = 'hello' |
ऐसी फ़ाइलें जिनमें टिप्पणी की शुरुआत "हैलो" से होती है | labels/contract.comment STARTS WITH 'hello' |
ऐसी फ़ाइलें जिनमें स्टेटस लागू किया जाता है | labels/contract.status = 'executed' |
ऐसी फ़ाइलें जिनके स्टेटस को लागू नहीं किया जा सकता | labels/contract.status != 'executed' |
ऐसी फ़ाइलें जिनमें बचत की तारीख, किसी खास तारीख से पहले की है | labels/contract.execution_date < '2020-06-22' |
ऐसी फ़ाइलें जिनमें value_usd (पूर्णांक) किसी खास वैल्यू से कम है | labels/contract.value_usd < 2000 |
ऐसी फ़ाइलें जिनमें client_contact को किसी खास ईमेल पते के तौर पर सेट किया गया है | labels/contract.client_contact = 'alex@altostrat.com' |
3. कई वैल्यू वाले फ़ील्ड (जैसे कि ListOptions.max_entries > 1)
एक से ज़्यादा वैल्यू वाले फ़ील्ड के लिए, सिर्फ़ IN ऑपरेटर का इस्तेमाल करके क्वेरी की जा सकती है:
'EMAIL_ADDRESS' IN labels/project.project_leads
NOT 'EMAIL_ADDRESS' IN labels/project.project_leads
उदाहरण
नीचे दिया गया कोड सैंपल, सभी को दिखाने के लिए एक या उससे ज़्यादा labelId
का इस्तेमाल करने का तरीका बताता है
Drive फ़ाइल में मौजूद किसी खास लेबल या फ़ील्ड वैल्यू वाली फ़ाइलें
संसाधन. यह टूल,
files.list
तरीका. अनुरोध के मुख्य हिस्से को
खाली रखें.
अगर आपको जवाब में labelInfo
को शामिल करना है, तो आपको यह जानकारी भी देनी होगी:
fields
पैरामीटर मेंlabelInfo
से पता चलता है कि आपlabelInfo
,includeLabels
के अंदर लौटाए गए.
सफल होने पर, जवाब मुख्य हिस्से में सूची शामिल होती है में से एक है.
Java
List<File> fileList = driveService.files().list().setIncludeLabels("LABEL_1_ID,LABEL_2_ID").setFields("items(labelInfo, id)").setQ("'labels/LABEL_1_ID' in labels and 'labels/LABEL_2_ID' in labels").execute().getItems();
Python
file_list = drive_service.files().list(includeLabels="LABEL_1_ID,LABEL_2_ID", q="'labels/LABEL_1_ID' in labels and 'labels/LABEL_2_ID' in labels", fields="items(labelInfo, id)").execute();
Node.js
/**
* Search for Drive files with specific labels
* @return{obj} file list with labelInfo
**/
async function searchForFileWithLabels() {
// Get credentials and build service
// TODO (developer) - Use appropriate auth mechanism for your app
const {GoogleAuth} = require('google-auth-library');
const {google} = require('googleapis');
const auth = new GoogleAuth({scopes: 'https://www.googleapis.com/auth/drive'});
const service = google.drive({version: 'v3', auth});
try {
const fileList = await service.files.list({
includeLabels: 'LABEL_1_ID,LABEL_2_ID',
q: '\'labels/LABEL_1_ID\' in labels and \'labels/LABEL_2_ID\' in labels',
fields:'files(labelInfo, id)',
});
return file;
} catch (err) {
// TODO (developer) - Handle error
throw err;
}
इन्हें बदलें:
- LABEL_1_ID: लौटाए जाने वाले किसी लेबल का पहला
labelId
. - LABEL_2_ID: लौटाए जाने वाले लेबल का दूसरा
labelId
.