You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/models/File.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,7 @@
92
92
*`parts` (int64): How many parts to fetch?
93
93
*`ref` (string):
94
94
*`restart` (int64): File byte offset to restart from.
95
+
*`copy_behaviors` (boolean): If copying a folder, also copy supported behaviors to the destination folder tree?
95
96
*`structure` (string): If copying folder, copy just the structure?
96
97
*`with_rename` (boolean): Allow file rename instead of overwrite?
97
98
*`buffered_upload` (boolean): If true, and the path refers to a destination not stored on Files.com (such as a remote server mount), the upload will be uploaded first to Files.com before being sent to the remote server mount. This can allow clients to upload using parallel parts to a remote server destination that does not offer parallel parts support natively.
@@ -109,6 +110,7 @@ await File.create(path, {
109
110
'provided_mtime': "2000-01-01T01:00:00Z",
110
111
'restart': 1,
111
112
'size': 1,
113
+
'copy_behaviors': false,
112
114
'with_rename': false,
113
115
'buffered_upload': false,
114
116
})
@@ -129,6 +131,7 @@ await File.create(path, {
129
131
*`ref` (string):
130
132
*`restart` (int64): File byte offset to restart from.
131
133
*`size` (int64): Size of file.
134
+
*`copy_behaviors` (boolean): If copying a folder, also copy supported behaviors to the destination folder tree?
132
135
*`structure` (string): If copying folder, copy just the structure?
133
136
*`with_rename` (boolean): Allow file rename instead of overwrite?
134
137
*`buffered_upload` (boolean): If true, and the path refers to a destination not stored on Files.com (such as a remote server mount), the upload will be uploaded first to Files.com before being sent to the remote server mount. This can allow clients to upload using parallel parts to a remote server destination that does not offer parallel parts support natively.
// buffered_upload - boolean - If true, and the path refers to a destination not stored on Files.com (such as a remote server mount), the upload will be uploaded first to Files.com before being sent to the remote server mount. This can allow clients to upload using parallel parts to a remote server destination that does not offer parallel parts support natively.
// buffered_upload - boolean - If true, and the path refers to a destination not stored on Files.com (such as a remote server mount), the upload will be uploaded first to Files.com before being sent to the remote server mount. This can allow clients to upload using parallel parts to a remote server destination that does not offer parallel parts support natively.
0 commit comments