Answers:
我看到了Google文档在文件夹中创建新文档时发生的情况。浏览器会短暂转到创建网址。要创建URL,您需要知道文件夹的ID。如果您在浏览器中导航到该文件夹,则其ID位于URL的末尾:
https://drive.google.com/drive/u/0/folders/[string_of_characters_is_the_folder_id]
复制ID,打开新的浏览器标签,然后将ID粘贴到创建网址的末尾,如下所示:
https://docs.google.com/document/create?usp=drive_web&folder=[string_of_characters_is_the_folder_id]
按Enter键,浏览器将转到在URL标识的文件夹中创建的新文档。
我知道这个线程已经安静了一段时间,但是它对我有所帮助。
我能够通过以下方式完成此任务:
获取目标文件夹的URL https://drive.google.com/drive/folders/[Folder ID]
取得文件的网址
/edit
为/copy
copyDestination
参数添加到最后原始网址:
https://docs.google.com/[specific file URL]/edit
最终结果将如下所示:
https://docs.google.com/[specific file URL]/copy?copyDestination=[Folder ID]
我希望这有帮助!
网址看起来像这样
https://docs.google.com/document/d/${temlpateId}/copy?id=${temlpateId}©Collaborators=false©Comments=false&includeResolvedCommentsOnCopy=false&title=${title}©Destination=${folderId}&usp=docs_web
替换这些值:
${temlpateId}
:源文件/模板的ID。当您浏览到源文件/模板时,可以从URL获得此信息。请注意,该值在URL中显示两次${title}
:赋予新文件的名称${folderId}
:用于放置新文件的文件夹的ID。当您浏览到Google云端硬盘文件夹时,该ID来自URL。新文件: https://docs.google.com/document/create?usp=drive_web&folder=[folder-id]
新的电子表格: https://docs.google.com/spreadsheets/create?usp=drive_web&folder=[folder-id]