11 lines
335 B
Batchfile
11 lines
335 B
Batchfile
|
|
@echo off
|
||
|
|
|
||
|
|
set TOOLCHAIN_PATH=.\win
|
||
|
|
set CONFIG_PATH=..\in
|
||
|
|
|
||
|
|
cd %TOOLCHAIN_PATH%
|
||
|
|
.\hdc.exe shell "rm -rf /mnt/hmdfs/100/account/device_view/local/files/skip_scan_dir.conf"
|
||
|
|
echo "remove skip_scan_dir.conf success"
|
||
|
|
.\hdc.exe file send %CONFIG_PATH%\skip_scan_dir.conf /mnt/hmdfs/100/account/device_view/local/files
|
||
|
|
echo "all success"
|
||
|
|
pause
|