質問編集履歴

2

情報の追加

2021/10/28 07:48

投稿

hogebar
hogebar

スコア5

test CHANGED
File without changes
test CHANGED
@@ -6,9 +6,43 @@
6
6
 
7
7
 
8
8
 
9
+ 下記の参考URLには、createdDate, modifiedDateはこのように書かれています。(翻訳文)
10
+
11
+ 共有ドライブが作成された日付がアップロードした日付とは違う?ということなんでしょうか?
12
+
13
+
14
+
15
+ ・createdDate
16
+
17
+ ```
18
+
19
+ 共有ドライブが作成された日付。RFC 3339形式を使用します。デフォルトのタイムゾーンはUTCです(例:2012-06-04T12:00:00-08:00。
20
+
21
+ ```
22
+
23
+ ・modifiedDate
24
+
25
+ ```
26
+
27
+ ファイルが最後に変更された日付。RFC 3339形式、デフォルトのタイムゾーンはUTC(など)2012-06-04T12:00:00-08:00です。タイプのフィールドはdate現在、互いに比較することはできず、一定の日付にのみ比較できます。
28
+
29
+ ```
30
+
31
+
32
+
33
+ ■参考URL
34
+
35
+ https://developers.google.com/drive/api/v2/ref-search-terms?hl=en
36
+
37
+
38
+
9
39
  ■前提条件
10
40
 
11
41
  今日、適当なファイルをgoogleドライブ上にアップロードする
42
+
43
+
44
+
45
+
12
46
 
13
47
 
14
48
 

1

インデントがおかしかった

2021/10/28 07:48

投稿

hogebar
hogebar

スコア5

test CHANGED
File without changes
test CHANGED
@@ -38,21 +38,21 @@
38
38
 
39
39
  const date = new Date();
40
40
 
41
- const ymd = date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate();
41
+ const ymd = date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate();
42
42
 
43
43
 
44
44
 
45
- // ヒットしない
45
+ // ヒットしない
46
46
 
47
- const cond = 'createdDate >= "' + ymd + '"';
47
+ const cond = 'createdDate >= "' + ymd + '"';
48
48
 
49
- // ヒットする
49
+ // ヒットする
50
50
 
51
- const cond = 'modifiedDate >= "' + ymd + '"';
51
+ const cond = 'modifiedDate >= "' + ymd + '"';
52
52
 
53
53
 
54
54
 
55
- const files = DriveApp.searchFiles(cond);
55
+ const files = DriveApp.searchFiles(cond);
56
56
 
57
57
  while (files.hasNext()) {
58
58