check_drive_file_public_access
Verify public link sharing status of a specific file in Google Drive by providing the user's email and file name. Ensures file access security and compliance.
Instructions
Searches for a file by name and checks if it has public link sharing enabled.
Args: user_google_email (str): The user's Google email address. Required. file_name (str): The name of the file to check.
Returns: str: Information about the file's sharing status and whether it can be used in Google Docs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_name | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_name": {
"title": "File Name",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"user_google_email",
"file_name"
],
"type": "object"
}