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.3.1.tar.gz (4.7 kB view details)

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for cloudreveimport-1.3.1.tar.gz
Algorithm Hash digest
SHA256 838e562091c947f47730a49a58565bacb6dd94d95591577cdb4b1545df176264
MD5 15fce6591729a02bdca17d544a6df472
BLAKE2b-256 b9d82b37fffbe0c16252dd7deab33150fd622d19f1f92d2e91632d46da94126f

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