Google Drive

gd_copy_file

Create a copy of a file. Optionally specify a new name, destination folder, or description for the copy.

Remote node2flow/google-drive

Other tools also called gd_copy_file? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the copy (default: \"Copy of {original}\")"
    },
    "file_id": {
      "type": "string",
      "description": "The ID of the file to copy"
    },
    "parents": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Parent folder ID(s) for the copy"
    },
    "description": {
      "type": "string",
      "description": "Description for the copy"
    }
  }
}