2017년 7월 6일 목요일

안드로이드 구글드라이브에서 폴더생성 후 파일 업로드하기 google Drive insert


안드로이드 구글드라이브에서 폴더생성 후 파일 업로드하기 google Drive insert


//폴더의 생성
File body1 = new File();
body1.setTitle("angel_folder");
body1.setMimeType("application/vnd.google-apps.folder");
File file1 = service.files().insert(body1).execute();

//파일의 업로드
File bodyInsert = new File();
bodyInsert.setTitle(fileContent.getName());
bodyInsert.setMimeType("text/plain");
bodyInsert.setParents(Arrays.asList(new ParentReference().setId(file1.getId())));
File file2 = service.files().insert(bodyInsert, mediaContent).execute();

즐거운 시간 보내세요~


댓글 없음:

댓글 쓰기