I share this blog with my thoughts and creations from my daily programming, knowledge, and technology updates.
Apps Scriptリファレンス: Apps Script Reference
|障害・課題追跡: IssueTracker
|Google Workspace: Status Dashboard
- Summary
2018年11月4日日曜日
GoogleDriveの新規ファイルを.newで作る
ブラウザのアドレスバーに以下のように入力すると新規ファイルを作成できます
出典
https://twitter.com/googledocs/status/1055490445088903168
以前から以下のように作成することもできていましたがより短くなった
https://docs.google.com/document/create
https://docs.google.com/spreadsheets/create
https://docs.google.com/presentation/create
https://docs.google.com/forms/create
パターンはいくつかあるようです
GoogleDocument
document.new
doc.new
docs.new
GoogleSpreadsheet
spreadsheet.new
sheet.new
sheets.new
GoogleSite
site.new
sites.new
website.new
GoogleSlide
presentation.new
slide.new
slides.new
deck.new
GoogleForm
form.new
forms.new
参考
https://twitter.com/googledocs/status/1055490445088903168
Latest post
Google Classroom API でクラスの一覧を取得したい
自分が指導・参加しているクラスの名称とIDを取得するコードを試しました 下記 Code.gs では pageSize で 100 を設定していますが 必ず 100件 返ってくるとは限らないらしいです https://developers.google.com/workspace/...