OneDriveUploader: A tool for multi-threaded uploading of files/folders to OneDrive, supporting Linux, Windows, and MacOS

OneDriveUploader: A tool for multi-threaded uploading of files/folders to OneDrive, supporting Linux, Windows, and MacOS

This tool is the best one I have used so far, I highly recommend it! In addition, the code for automatically deleting files after uploading them to OneDrive has been added.

1. Introduction to OneDriveUploader

Support uploading files and folders to the specified directory and keep the directory structure before uploading.
Supports the use of command parameters, which is convenient for external program calls.
Support custom upload chunk size.
Support multi-threaded uploading (multiple files uploaded simultaneously).
Support dynamic adjustment of retry times based on file size

2. OneDrive Authorization

International Edition, Personal Edition (Home Edition)
https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=78d4dc35-7e46-42c6-9023-2d39314433a5&response_type=code&redirect_uri=http://localhost/onedrive-login&response_mode=query&scope=offline_access%20User.Read%20Files.ReadWrite.All

Chinese version (21Vianet)
https://login.chinacloudapi.cn/common/oauth2/v2.0/authorize?client_id=dfe36e60-6133-48cf-869f-4d15b8354769&response_type=code&redirect_uri=http://localhost/onedrive-login&response_mode=query&scope=offline_access%20User.Read%20Files.ReadWrite.All

Then you will get a URL. Don’t close it as you will need it later.

3. Use of OneDriveUploader under Linux

1. Download and give permission

 wget https://raw.githubusercontent.com/MoeClub/OneList/master/OneDriveUploader/amd64/linux/OneDriveUploader -P /usr/local/bin/
chmod +x /usr/local/bin/OneDriveUploader

2. Initialization

 # International version of OneDriveUploader -a "url"
# Personal Edition (Home Edition)
OneDriveUploader -ms -a "url"
# Chinese version (21Vianet)
OneDriveUploader -cn -a "url"

Replace the url with the address obtained in the browser in the above picture, which starts with http://loaclhost. Once authorized, it will not be used again.

3. Configuration File

After the authorization is successful, the configuration file auth.json is generated in the same directory (so, for ease of operation, choose an easy-to-remember directory to perform initialization)
Modify the configuration file, or you can choose not to modify it. I mainly changed the thread

4. When using commands, all parameters after the commands must be enclosed in double quotes ""

-s // *Required parameter, the file or folder to upload
-r // Upload to a directory in the network disk, default: root directory
-t // Number of threads, the number of files uploaded simultaneously. Default: 2
-b // Custom upload chunk size, which can improve network throughput, limited by disk performance and network speed.
-c // Configuration file path
-f // switch
// Add the -f parameter to force reading the block size configuration and multi-thread configuration in auth.json.
// Without the -f parameter, the current parameters will be saved in the auth.json configuration file each time.
-n // When uploading a single file, rename it in the network disk

5. Usage examples

 # 將同目錄下的mm00.jpg 文件上傳到OneDrive 網盤根目錄OneDriveUploader -s "mm00.jpg" # 將同目錄下的mm00.jpg 文件上傳到OneDrive 網盤根目錄,并改名為mm01.jpg OneDriveUploader -s "mm00.jpg" -n "mm01.jpg" # 將同目錄下的Download 文件夾上傳到OneDrive 網盤根目錄OneDriveUploader -s "Download" # 將同目錄下的Download 文件夾上傳到OneDrive 網盤Test目錄中OneDriveUploader -s "Download" -r "Test" # 將同目錄下的Download 文件夾上傳到OneDrive 網盤Test目錄中, 使用10 線程OneDriveUploader -t 10 -s "Download" -r "Test" # 將同目錄下的Download 文件夾上傳到OneDrive 網盤Test目錄中, 使用15 線程, 并設置分塊大小為20M OneDriveUploader -t 15 -b 20 -s "Download" -r "Test"

6. If there are many files or they are large, you can run the program in the background: nohub OneDriveUploader -s "file or directory" &

4. Use of OneDriveUploader under Windows

Download the software to the English directory, it is better to keep it simple.

Then press win + R and enter cmd to enter the command line.

The rest of the operation is the same as Linux, except that the file is OneDriveUploader.exe

5. MacOS. I don’t have it, so I won’t talk about it.

File download: https://github.com/MoeClub/OneList/tree/master/OneDriveUploader/amd64

OneDriveUploader local download: OneDriveUploader-20191205

In addition, a netizen in loc made a more fool-proof client for Windows: ODUG, local download : ODUG-OneDrive upload tool

Setting Instructions
OneDrive Directory: If the directory does not exist, it will be created automatically. Threads: Multi-threaded upload, default 3, can be modified by yourself. Block size: upload block size, default 10MB, can be modified by yourself.

Note:
1. The software supports uploading single files and directories
2. Uploading to OneDrive only supports the root directory and the second-level directory, not the third-level directory
3. The software directory can be moved as a whole, but the files in the directory cannot be moved, renamed, or deleted, otherwise they will be unusable!

6. Automatically delete files after uploading them to OneDrive

Aria2 and OneDriveUploader are required.

Create a new rcup.sh in /root

 #!/bin/bash

GID = " $1 " ;
FileNum = " $2 " ;
File = " $3 " ;
MaxSize = "15728640" ;
Thread = "3" ; #Default is 3 threads, modify it yourself. If the server configuration is not good, it is not recommended to have too many threads
Block = "20" ; #Default block size is 20m, modify it yourself
RemoteDIR = "" ; #The path to upload to Onedrive, the default is the root directory. If you want to upload to the MOERATS directory, please fill in MOERATS in ""
LocalDIR = "/www/download/" ; #Aria2 download directory, remember to add / at the end
Uploader = "/usr/local/bin/OneDriveUploader" ; #Full path of the uploaded program, default is the directory installed in this article
Config = "/root/auth.json" ; #Initialize the absolute path of the generated configuration auth.json, refer to the previous


if [[ - z $ ( echo " $FileNum " | grep - o '[0-9]*' | head - n1 ) ]]; then FileNum = '0' ; fi
if [[ " $FileNum " - le '0' ]]; then exit 0 ; fi
if [[ " $# " != '3' ]]; then exit 0 ; fi

function LoadFile (){
  if [[ ! - e " ${Uploader} " ]]; then return ; fi
  IFS_BAK = $IFS
  IFS = $ '\n'
  tmpFile = " $(echo " $ { File / #$LocalDIR}" |cut -f1 -d'/') "
  FileLoad = " ${LocalDIR} ${tmpFile} "
  if [[ ! - e " ${FileLoad} " ]]; then return ; fi
  ItemSize = $ ( du - s " ${FileLoad} " | cut - f1 | grep - o '[0-9]*' | head - n1 )
  if [[ - z " $ItemSize " ]]; then return ; fi
  if [[ " $ItemSize " - ge " $MaxSize " ]]; then
    echo - ne "\033[33m ${FileLoad} \033[0mtoo large to spik.\n" ;
    return ;
  fi
  $ { Uploader } - c " ${Config} " - t " ${Thread} " - b " ${Block} " - s " ${FileLoad} " - r " ${RemoteDIR} "
  if [[ $ ? == '0' ]]; then
    rm - rf " ${FileLoad} " ;
  fi
  IFS = $IFS_BAK
}
LoadFile ;

Give Permission

 chmod + x rcup . sh

Then add a line to the Aria2 configuration file and restart Aria2.

 on - download - complete = /root/ rcup . sh

implement

 bash / root / rcup . sh

If an error occurs, provide a solution.

 1 、安裝dos2unix Centos  yum install dos2unix - y Debian / Ubuntu  apt install dos2unix - y 2 、轉換格式dos2unix / root / rcup . sh

How to use aria2

 Google browser plug-in aria2 for chrome
Install AriaNg yourself
Android mobile software aria2app

<<:  Aoyouhost: 64 yuan/month/2GB memory/40GB SSD space/400GB traffic/8Mbps port/KVM/Hong Kong CN2 GIA

>>:  Micro-based host: 580 yuan/year/2GB memory/15GB SSD space/500GB traffic/50Mbps port/KVM/Hong Kong CMI

Recommend

Contabo 4 cores 12GB RAM SSD hard drive German KVM VPS review

Details: Contabo: €8.99/month/4 cores/12GB RAM/30...

W3Space: $20/year/2 cores/1GB memory/15GB space/1TB traffic/1 IP/OpenVZ

W3Space is an American hosting company that provi...

DMIT 1GB RAM 500Mbps Bandwidth Hong Kong CN2 KVM VPS Review

DMIT has launched a test on Hong Kong CN2 KVM VPS...

Vultr 512MB RAM KVM VPS Japan Review

Details: Vultr: $2.5/month/512MB memory/20GB SSD ...