Code Monkey home page Code Monkey logo

gdrivetest's People

Contributors

robinbobin avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

gdrivetest's Issues

Creating a folder using createIfNotExists(...) throws error EISDIR: illegal operation on a directory, read

Hi, I hope you are doing great.
I have been trying to create/read my files in a specific folder, and for that I am using createIfNotExists(...) function. As par your document this function check if the folder exist then throw the id of that folder other wise create a new folder and throws its id..
But I am doing the same code as you have given, but its throwing me exception
EISDIR: illegal operation on a directory, read

Heres my code:

console.log("folder object",await invoker(async () => (
      await gdrive.files.createIfNotExists(
        {
          q: new ListQueryBuilder()
            .e("name", "TestFolder")
            .and()
            .e("mimeType", MimeTypes.FOLDER)
            .and()
            .in("root", "parents")
        },
       (await gdrive.files.newMetadataOnlyUploader()
          .setRequestBody({
            name: "TestFolder",
            mimeType: MimeTypes.FOLDER,
            parents: ["root"]
          }).execute()).id
        ).catch(e=> {
          console.log("error folder", e);
        })
    )));
Here's my scopes:

`scopes: [
  "https://www.googleapis.com/auth/drive",
  "https://www.googleapis.com/auth/drive.appdata",
  "https://www.googleapis.com/auth/drive.file",
  "https://www.googleapis.com/auth/drive.appfolder",
  'https://www.googleapis.com/auth/drive.metadata',
],` 

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.