一、向鴻蒙手機批量傳輸文件(PC端到手機端)
首先這里使用的hdc命令進行的批量文件傳輸说敏,主要命令如下:
發(fā)送文件命令:
hdc file send 發(fā)送的文件或文件夾路徑 發(fā)送到的文件路徑
// 將此目錄文件夾./idcardlibrary 下的文件(包含文件夾)梁棠,發(fā)送到/data/local/tmp/library/下
hdc file send ./idcardlibrary /data/local/tmp/library/
二、讀取公共目錄文件
需要讀取公共目錄文件目前包含兩個目錄download 和documents,同時需要申請對應的權限稠腊,即可直接訪問讀取文件东跪,權限為
"requestPermissions" : [
"ohos.permission.READ_WRITE_DOWNLOAD_DIRECTORY",
"ohos.permission.READ_WRITE_DOCUMENTS_DIRECTORY",
]
申請權限參考官方文檔申請即可畸陡。
讀取文件示例:
//TODO 讀取文件數(shù)據(jù)
let buffer1 = new ArrayBuffer(1024);
try {
const file = fs.openSync(path, fs.OpenMode.READ_ONLY);
let photoSize = fs.statSync(file.fd).size;
console.error('Photo Size: ' + photoSize);
buffer1 = new ArrayBuffer(photoSize);
fs.readSync(file.fd, buffer1);
} catch (e) {
console.error('讀取圖像文件失敗' + e);
promptAction.showToast({
message: '讀取圖像文件失敗:',
duration: 1000,
});
return;
}