Skip to content

这是个批处理文件,可以拖动文件到此bat文件上,将之上传到你的私密gist,理论上不限制上传文件大小

Notifications You must be signed in to change notification settings

Kiritocyz/bat-uplaoad-files-to-gist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 

Repository files navigation

@echo off
chcp 65001
echo.
setlocal
rem 你需要有github账号和具有gist权限的access_token;

rem 新建一个txt文件,复制全部代码,将上述的access_token填入代码中,重命名为.bat后缀的文件即可使用;

rem 按理说不限制上传文件大小,支持txt、yaml等文本文件,支持csv文件;

rem 要求所有文件的编码为utf8,否则会出现中文和符号乱码;

rem 实测win10自带的powershell版本5.1上传中文乱码,最好升级你的powershell版本到7+;

rem 确认你的powershell目录存在的是pwsh.exe还是powershell.exe,若是后者,将代码默认的pwsh替换成powershell。

rem 替换USER_NAME为你的GitHub用户名,用于拼接你的文件URL 
set USER_NAME=你的GitHub用户名

rem 替换YOUR_ACCESS_TOKEN为你的GitHub访问令牌
set TOKEN=YOUR_ACCESS_TOKEN

rem 设置上传到指定gist的gistId,不填此项则创建新的gist
set GIST_ID=

rem 设置上传后的Gist描述
set GIST_DESCRIPTION=你的Gist描述

rem 检查是否有文件拖入
if "%~1"=="" (
    echo No file provided.
    goto :eof
)

set "FILE_PATH=%~1"
set "CHUNK_SIZE=1000000"  rem 设置每个分片的大小,单位为字节

pwsh -Command ^
    "$token = '%TOKEN%';" ^
    "$filePath = '%FILE_PATH%';" ^
    "$fileName = [System.IO.Path]::GetFileName($filePath);" ^
    "$fileContent = [System.IO.File]::ReadAllText($filePath);" ^
    "$chunkSize = %CHUNK_SIZE%;" ^
    "$totalLength = $fileContent.Length;" ^
    "$numChunks = [Math]::Ceiling($totalLength / $chunkSize);" ^
    "$gistId = '%GIST_ID%';" ^
    "for ($i = 0; $i -lt $numChunks; $i++) {" ^
        "$start = $i * $chunkSize;" ^
        "$end = [Math]::Min($totalLength, ($i + 1) * $chunkSize);" ^
        "$chunkContent = $fileContent.Substring($start, $end - $start);" ^
        "if ($i -eq 0 -and $gistId.Length -eq 0) {" ^
            "$gist = @{ description = '%GIST_DESCRIPTION%'; files = @{ ($fileName) = @{ content = $chunkContent } }; public = $false };" ^
            "$response = Invoke-RestMethod -Uri 'https://api.github.com/gists' -Headers @{ Authorization = 'token ' + $token } -Method POST -ContentType 'application/json' -Body ($gist | ConvertTo-Json);" ^
            "$gistId = $response.id;" ^
        "} else {" ^
            "$update = @{ description = '%GIST_DESCRIPTION%'; files = @{ ($fileName) = @{ content = $chunkContent } } };" ^
            "$response = Invoke-RestMethod -Uri ('https://api.github.com/gists/' + $gistId) -Headers @{ Authorization = 'token ' + $token } -Method PATCH -ContentType 'application/json' -Body ($update | ConvertTo-Json);" ^
        "}" ^
    "}" ^
    "Write-Output ('文件上传到Gist完成!Gist URL: https://gist.github.com/' + $gistId)"; ^
    "Write-Output ('')"; ^
    "Write-Output ('你的文件URL: https://gist.githubusercontent.com/%USER_NAME%/' + $gistId + '/raw/' + $fileName)"; ^
    "Write-Output ('')"; ^
    "Write-Output ('NOTE: 中文文件名需要URLEncode处理后才能访问,出现红字或者URL不完整可能上传失败了')"; ^
    "Write-Output ('')"; ^
    "Write-Output ('请保留你gistId: ' + $gistId + ' 将之填入本代码以便上传覆盖同名文件!')"; ^
    "Write-Output ('')"; ^
	
endlocal
echo.
echo 上传完成!15秒后自动关闭窗口……
timeout /t 15 >nul
exit

About

这是个批处理文件,可以拖动文件到此bat文件上,将之上传到你的私密gist,理论上不限制上传文件大小

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published