View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0007444 | Windows and other desktop OS | Server | public | 2024-07-04 17:39 | 2024-07-08 17:53 |
Reporter | DigitalMy | ||||
Priority | normal | Severity | minor | Reproducibility | have not tried |
Status | assigned | Resolution | open | ||
Summary | 0007444: Scripts for video archive processing | ||||
Description | Arrange files saved to network share by IP camera firmware default D-Link DCS in most cases | ||||
Tags | No tags attached. | ||||
FinishDate | |||||
StartDate | |||||
WasteTime | 0 | ||||
PriorityIndex | 1 | ||||
LaboriousnessIndex | 1 | ||||
|
[code] @echo off setlocal enabledelayedexpansion SET root=S:\motionFolder cd !root! FOR %%V IN (!root!\*.*) DO ( SET filedate=%%~tV rem now echo !filedate! SET fileyear=!filedate:0000012:0000006,4! SET filemonth=!filedate:0000008:0000003,2! SET fileday=!filedate:~0,2! rem echo !fileyear! !filemonth! !fileday! mkdir !root!\!fileyear! 2>nul mkdir !root!\!fileyear!\!filemonth! 2>nul mkdir !root!\!fileyear!\!filemonth!\!fileday! 2>nul echo move %%V to !root!\!fileyear!\!filemonth!\!fileday!\ move %%V !root!\!fileyear!\!filemonth!\!fileday!\ >nul ) [/code] |
|
setlocal enabledelayedexpansion SET root=S:\motionFolder cd !root! del !root!\*.log /s |