這篇文章跟大家分享一個Node實戰,介紹一下使用Node.js和adb怎麼開發一個手機備份小工具,希望對大家有幫助!
隨著科技的發展我們日常中拍攝的圖片和視訊清晰度不斷提升,但這也有一個較大的缺點那就是他們的體積也越來越大。還記得以前剛開始使用智慧型手機的時候那會一張照片只不過才2-5MB
,而現在一張照片已經達到了15-20MB
,甚至更大。
而我們手機上的儲存空間是有限的,我們怎麼把這些照片和影片備份起來,好讓手機騰出空間來呢?
於是,在剛開始我是將這些資料都存放在了某相簿雲端上,雖然解決了存放這些資料的問題,但是也冒出了新的問題,例如上傳大小約束、需要一直佔後台導致耗電增加、廣告。
後面我乾脆不使用了,我自己擼了一個腳本用來備份這些數據,於是就有了這篇文章。
我使用了Node.js
和adb
製作了這個腳本,並命名為MIB
這個小工具是利用手機上的adb
調試,透過shell
指令讀取手機中的檔案訊息和複製,移動手機中的檔案實現的。
我畫了一個簡易流程圖,MIB
首先會從讀取設定檔(沒有則建立配檔),根據設定檔讀取需要備份的節點路徑並進行檔案備份作業。直到節點結束。
#安裝所需環境
下載adb
包,用於執行各種設備操作
#下載Node.js
,這個我相信兄弟們的電腦上都已經有了
安裝依賴函式庫
#fs-extra
:基於fs
模組二次封裝的Node
庫prompts
:命令列上互動的Node
庫 winston
:用於記錄腳本日誌的Node
庫#由於專案原始碼有點過多,我在這裡只放主要的程式碼部分
有興趣的小夥伴可以去
github
上看專案原始碼github.com/QC2168/mib
讀取設定檔
export const getConfig = (): ConfigType => { if (existConf()) { return readJsonSync(CONFIG_PATH); } // 找不到配置文件 return createDefaultConfig(); };
執行腳本時,選擇需要備份的裝置ID
。並指定執行adb
命令時的設備
(async () => { const device: string | boolean = await selectDevice(); if (device) MIB(); })(); export const selectDevice = async ():Promise<string|false> => { // 获取设备 const list: devicesType[] = devices(); if (list.length === 0) { log("当前无设备连接,请连接后再执行该工具", "warn"); return false; } const result = list.map((i) => ({ title: i.name, value: i.name })); const { value } = await prompts({ type: "select", name: "value", message: "please select your device", choices: result, }); currentDeviceName = value; return currentDeviceName; };
#遍歷備份節點
選擇設備之後,進入遍歷節點信息,並執行拷貝檔案到指定路徑(設定檔中的output
屬性)
const MIB = () => { // 获取配置文件 const { backups, output } = getConfig(); // 判断备份节点是否为空 if (backups.length === 0) { log("当前备份节点为空", "warn"); log("请在配置文件中添加备份节点", "warn"); } if (backups.length > 0) { isPath(output); // 解析备份路径最后一个文件夹 backups.forEach((item: SaveItemType) => { log(`当前执行备份任务:${item.comment}`); const arr = item.path.split("/").filter((i: string) => i !== ""); const folderName = arr.at(-1); const backupDir = pathRepair(item.path); // 备份目录 // 判断节点内是否有备份目录 // 拼接导出路径 const rootPath = pathRepair(pathRepair(output) + folderName); const outputDir = item.output ? item.output && pathRepair(item.output) : rootPath; // 判断备份路径是否存在 if (!isPathAdb(backupDir)) { log(`备份路径:${backupDir} 不存在已跳过`, "error"); } else { // 判断导出路径 isPath(outputDir); backup(backupDir, outputDir, item.full); } }); } log("程序结束"); }; // 细化需要备份的文件,进入备份队列中 const backup = (target: string, output: string, full: boolean = false) => { if (!full) { // 备份非备份的文件数据 // 获取手机中的文件信息,对比本地 const { backupQueue } = initData(target, output); // 计算体积和数量 computeBackupSize(backupQueue); // 执行备份程序 move(backupQueue, output); } else { // 不文件对比,直接备份 moveFolder(target, output); } }; // 移动待备份文件队列中的文件 const move = (backupQueue: FileNodeType[], outputDir: string): void => { if (backupQueue.length === 0) { log("无需备份"); return; } for (const fileN of backupQueue) { log(`正在备份${fileN.fileName}`); try { const out: string = execAdb( `pull "${fileN.filePath}" "${outputDir + fileN.fileName}"`, ); const speed: string | null = out.match(speedReg) !== null ? out.match(speedReg)![0] : "读取速度失败"; log(`平均传输速度${speed}`); } catch (e: any) { log(`备份${fileN.fileName}失败 error:${e.message}`, "error"); } } };
連線備份資料
mib。
npm i @qc2168/mib -g
設定腳本檔案
首次使用需要在使用者目錄下新建.mibrc文件,並設定對應的參數內容。
{ "backups": [ { "path": "/sdcard/MIUI/sound_recorder/call_rec", "comment": "通话录音" }, { "path": "/sdcard/DCIM/Camera", "comment": "本地相册" }, { "path": "/sdcard/DCIM/Creative", "comment": "我的创作" }, { "path": "/sdcard/Pictures/weixin", "comment": "微信相册" }, { "path": "/sdcard/tencent/qq_images", "comment": "QQ相册" }, { "path": "/sdcard/Pictures/知乎", "comment": "知乎" }, { "path": "/sdcard/tieba", "comment": "贴吧" }, { "path": "/sdcard/DCIM/Screenshots", "comment": "屏幕截屏" }, { "path": "/sdcard/DCIM/screenrecorder", "comment": "屏幕录制" }, { "path": "/sdcard/MIUI/sound_recorder", "comment": "录音" }, { "path": "/sdcard/MIUI/sound_recorder/app_rec", "comment": "应用录音" } ], "output": "E:/backups/MI10PRO" }
執行備份
在控制台中,直接輸入mib即可觸發腳本,無需其他參數。
mib
2022-04-09 20:58:11 info 当前执行备份任务:屏幕录制 2022-04-09 20:58:11 info 备份数量1 2022-04-09 20:58:11 info 已获取数据24Mb 2022-04-09 20:58:11 info 备份体积24Mb 2022-04-09 20:58:11 info 正在备份Screenrecorder-2022-04-08-19-45-51-836.mp4 2022-04-09 20:58:12 info 平均传输速度27.7 MB/s 2022-04-09 20:58:12 info 当前执行备份任务:录音 2022-04-09 20:58:12 info 备份数量0 2022-04-09 20:58:12 info 备份体积0Mb 2022-04-09 20:58:12 info 无需备份 2022-04-09 20:58:13 info 程序结束
原文網址:https://juejin.cn/post/7084889987631710221作者:_island更多node相關知識,請造訪:
nodejs 教學!
以上是手把帶你使用Node.js和adb開發一個手機備份小工具的詳細內容。更多資訊請關注PHP中文網其他相關文章!