使用Google Drive Rest API更新文件名

时间:2017-08-19 22:25:48

标签: javascript google-drive-api google-apis-explorer

尝试重命名文件夹中的所有文件,只是想在所有文件中添加前缀,使用Javascript。得到错误:“未捕获的TypeError:gapi.client.drive.files.patch不是函数”

listFiles函数能够获取文件ID和当前名称,但是gapi.client.drive.files.patch会抛出错误。

尝试使用gapi.client.drive.properties.patch但它也出错。!

代码:

<button id="authorize-button" style="display: none;">Authorize</button>
<button id="signout-button" style="display: none;">Sign Out</button>
<p id="list" style="display: none;">Enter Folder ID:
<input type="text" id="listInput" size="40" />
<button id="list-button" onClick="listFiles();">Get List</button></p>
<pre id="content"></pre>

<script type="text/javascript">
var CLIENT_ID = '';
var DISCOVERY_DOCS = ["https://www.googleapis.com/discovery/v1/apis/drive/v3/rest"];
var SCOPES = 'https://www.googleapis.com/auth/drive https://www.googleapis.com/auth/drive.appdata https://www.googleapis.com/auth/drive.apps.readonly https://www.googleapis.com/auth/drive.file https://www.googleapis.com/auth/drive.metadata https://www.googleapis.com/auth/drive.scripts';
var authorizeButton = document.getElementById('authorize-button');
var signoutButton = document.getElementById('signout-button');
var pre = document.getElementById('content');
var list = document.getElementById('list');
var listInput = document.getElementById('listInput');
var listButton = document.getElementById('list-button');

function handleClientLoad() {
    gapi.load('client:auth2', initClient);
}
function initClient() {
    gapi.client.init({
        discoveryDocs: DISCOVERY_DOCS,
        clientId: CLIENT_ID,
        scope: SCOPES
    }).then(function () {
        // Listen for sign-in state changes.
        gapi.auth2.getAuthInstance().isSignedIn.listen(updateSigninStatus);
        // Handle the initial sign-in state.
        updateSigninStatus(gapi.auth2.getAuthInstance().isSignedIn.get());
        authorizeButton.onclick = handleAuthClick;
        signoutButton.onclick = handleSignoutClick;
    });
}
function updateSigninStatus(isSignedIn) {
    if (isSignedIn) {
        authorizeButton.style.display = 'none';
        signoutButton.style.display = 'block';
        list.style.display = 'block';
    } else {
        authorizeButton.style.display = 'block';
        signoutButton.style.display = 'none';
        list.style.display = 'none';
        clearPre();
    }
}
function handleAuthClick(event) {
    gapi.auth2.getAuthInstance().signIn();
}
function handleSignoutClick(event) {
    gapi.auth2.getAuthInstance().signOut();
}
function appendPre(message) {
    var textContent = document.createTextNode(message + '\n');
    pre.appendChild(textContent);
}
function clearPre() {
    pre.innerHTML = "";
}
function listFiles() {
    clearPre();
    appendPre('Getting Files List......');
    gapi.client.drive.files.list({
        'q' : "'" + listInput.value + "' in parents",
        'orderBy' : 'name',
        'pageSize': 1000,
        'fields': "nextPageToken, files(id, name, parents, mimeType)"
    }).then(function(response) {
        clearPre();
        var files = response.result.files;
        console.log(files);
        if (files && files.length > 0) {
            var currentFile;
            var currentFileId;
            appendPre('Count: ' + files.length + ' Files:');
            for (var i = 0; i < files.length; i++) {
                currentFile = files[i].name;
                currentFileId = files[i].id;
                appendPre(currentFile);
                alert(currentFileId + ' Rename ' + currentFile);
                *********Getting Error here*********
                var request = gapi.client.drive.files.patch({
                    'fileId': currentFileId,
                    'resource': {'title': 'Rename ' + currentFile}
                });
                request.execute(function(resp) {
                    console.log('New Title: ' + resp.title);
                });
            }
        } else {
            appendPre('No files found.');
        }
    });
}
</script>
<script async defer src="https://apis.google.com/js/api.js" nload="this.onload=function(){};handleClientLoad()" onreadystatechange="if this.readyState === 'complete') this.onload()">
</script>

3 个答案:

答案 0 :(得分:1)

我可以在你的代码中看到你正在使用V3。

在上述版本中不推荐使用

gapi.client.drive.files.patch,您可以使用Files: update来更新所需的文件名。

或者换句话说,您可以切换到V2并使用documentation中提供的代码。

/**
 * Rename a file.
 *
 * @param {String} fileId <span style="font-size: 13px; ">ID of the file to rename.</span><br> * @param {String} newTitle New title for the file.
 */
function renameFile(fileId, newTitle) {
  var body = {'title': newTitle};
  var request = gapi.client.drive.files.patch({
    'fileId': fileId,
    'resource': body
  });
  request.execute(function(resp) {
    console.log('New Title: ' + resp.title);
  });
}

答案 1 :(得分:1)

意识到最初的问题是Google Drive API的Javascript和V2 ...

尝试使用Python和V3,花了我一段时间才能弄清楚该如何做。我缺少的一点是需要提交body={}属性的name关键字参数。

假设您已经在单独的呼叫中获得了要重命名的file_id,如下所示:

drive.files().update(
       fileId=file_id,
       supportsAllDrives='true',
       body={'name': 'new name for this file'}
       ).execute()

答案 2 :(得分:0)

在尝试使用其他人群NPM模块进行Google云端硬盘之后,我决定是时候自己动手了,我只是添加了mv()功能,所以我有了这场战斗,这就是我想出来并在我的图书馆。它今天不公开,会更改名称,但如果有人想尝试测试版,请在推特上用同名来打我。

注意: 如果你正在“移动”一个文件,你只需要addParents和removeParents,如果你真的要重命名它,你只需要名字。

drive.files.update({
            fileId: driveFileId,
            addParents: commaStringOfParents,
            removeParents: commaStringOfParents,
            resource: { name: newFileName }
        }, (err, res) => {
            if (err) handleError(err);
            let files = res.data
            // Do stuff here
        }