NextCloud手动添加文件并列出

2020-07-16 11:13:54 浏览数 (1)

NextCloud 自带的数据目录在列目录时都是通过数据库查询,如果需要手动在磁盘目录上添加文件并使用nextcloud列出就需要手动扫描。

代码语言:javascript复制
sudo -u www php console.php files:scan --all

这条命令是官方提供的,但是实际使用时会报错如下:

代码语言:javascript复制
Unknown user 1 media
 --------- ------- -------------- 
| Folders | Files | Elapsed time |
 --------- ------- -------------- 
| 0       | 0     | 00:00:00     |
 --------- ------- -------------- 

经过信息检索发现问题,在nextcloud安装目录下使用如下命令扫描,就可以看到新添加的文件了:

代码语言:javascript复制
$ sudo -u www php console.php files:scan --path songtianlun/files

# songtianlun 可替换为你需要扫描的用户

参考文献

  • NEXTCLOUD 下载和数据存储目录的问题
  • OCC and FIles:Scan in single catlog

Author: Frytea

Title: NextCloud手动添加文件并列出

Link: https://cloud.tencent.com/developer/article/1662745

Copyright: This work by TL-Song is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

0 人点赞