Skip to main content

Import your existing files into cloudreve!

Project description

cloudreveimport

Import your existing files into Cloudreve!

一键将外部文件导入Cloudreve中。

Install

Build executable file

git clone https://github.com/yindaheng98/cloudreveimport
cd cloudreveimport
go build

Then you shall get an executable file cloudreveimport, you can try it:

./cloudreveimport -h
Usage of D:\Documents\MyPrograms\cloudreveimport\cloudreveimport.exe:
  -c string
        Path to the config file. (default "D:\\Documents\\MyPrograms\\cloudreveimport\\conf.ini")
  -m string
        A folder to be imported.
  -t string
        Import the folder to which folder in cloudreve.
  -u string
        Email of the target user. (default "admin@cloudreve.org")

Usage

Command line

Just run it in the device where the Cloudreve is installed:

Assume your Cloudreve config file is /root/conf.ini, and you want to import a folder /mnt/gallery into the user me@cloudreve.org's my/gallery folder in Cloudreve. Just run:

./cloudreveimport -c "/root/conf.ini" -u "me@cloudreve.org" -m "/mnt/gallery" -t "my/gallery"

Then open me@cloudreve.org's my/gallery folder in Cloudreve, and you will see those files in /mnt/gallery here.

Note: 上述文件操作是直接对数据库进行修改,会导致用户已用空间与实际不符,所以在完成文件的导入或文件大小修改后需要执行数据库脚本校准用户容量

Python

使用Python,你的导入过程可以更加灵活。 比如,在有大量文件需要定期导入而你的存储设备列出文件列表的速度较慢时,一次导入可能会花费很长时间; 或者,在自动定期导入时不希望目录中的某些文件被导入。 这时,你可以编写自己的Python程序选择要导入哪些文件、删除哪些文件,还能修改文件或文件夹的创建和修改时间。

This project also provides a Python package for advanced usage:

pip install cloudreveimport

You can write your scripts in Python:

import time
from cloudreveimport import Invoker
invoker = Invoker(
    execuable="./cloudreveimport",
    config="/root/conf.ini",
    email="me@cloudreve.org"
)
invoker.start()
invoker.import_file(
    source_name="path to the file on your disk",
    dst_path=["path", "you", "want", "to", "import", "to", "in", "cloudreve"],
    size=100, # filesize in Bytes
)
invoker.update_file_stat(
    dst_path=["path", "to", "file", "in", "cloudreve"],
    ctime=int(time.time()), # created time
    mtime=int(time.time()), # updated time
    size=100, # filesize in Bytes
)
invoker.delete_file(
    dst_path=["path", "to", "file", "in", "cloudreve"],
)
invoker.update_folder_time(
    dst_path=["path", "to", "folder", "in", "cloudreve"],
    ctime=int(time.time()), # created time
    mtime=int(time.time()), # updated time
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cloudreveimport-1.4.3.tar.gz (4.8 kB view details)

Uploaded Source

File details

Details for the file cloudreveimport-1.4.3.tar.gz.

File metadata

  • Download URL: cloudreveimport-1.4.3.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.18

File hashes

Hashes for cloudreveimport-1.4.3.tar.gz
Algorithm Hash digest
SHA256 0f94c85001164d01b331b9a28fcfa4327922c803ca36ef431dc786fe85a5b02c
MD5 61c8c897b59a701d0e6e8f49a7290f04
BLAKE2b-256 cf3132d769991f270cb2152f658d3c939eefdc4b05568229a59e5331e8c0d161

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page