1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-17 23:59:44 +00:00

Merge branch '6.1'

This commit is contained in:
Jonathan Xu
2017-07-07 11:19:27 +08:00
17 changed files with 1020 additions and 139 deletions

View File

@@ -426,6 +426,19 @@ seaf_repo_manager_copy_file (SeafRepoManager *mgr,
int synchronous,
GError **error);
SeafileCopyResult *
seaf_repo_manager_copy_multiple_files (SeafRepoManager *mgr,
const char *src_repo_id,
const char *src_dir,
const char *src_filenames,
const char *dst_repo_id,
const char *dst_dir,
const char *dst_filenames,
const char *user,
int need_progress,
int synchronous,
GError **error);
SeafileCopyResult *
seaf_repo_manager_move_file (SeafRepoManager *mgr,
const char *src_repo_id,
@@ -440,6 +453,20 @@ seaf_repo_manager_move_file (SeafRepoManager *mgr,
int synchronous,
GError **error);
SeafileCopyResult *
seaf_repo_manager_move_multiple_files (SeafRepoManager *mgr,
const char *src_repo_id,
const char *src_dir,
const char *src_filenames,
const char *dst_repo_id,
const char *dst_dir,
const char *dst_filenames,
int replace,
const char *user,
int need_progress,
int synchronous,
GError **error);
int
seaf_repo_manager_rename_file (SeafRepoManager *mgr,
const char *repo_id,