This Forum Beta is ONLY for registered owners of D-Link products in the USA for which we have created boards at this time.
function doTheSort([string]$SourceDir, [string]$DestinationDir) { $files = get-childitem $SourceDir *.* foreach ($file in $files) { $Directory = $DestinationDir + "" + $file.CreationTime.Date.ToString('yyyy-MM-dd') if (!(Test-Path $Directory)) { New-Item $directory -type directory } Move-Item $file.fullname $Directory }} doTheSort "c:\camera\Today\" "c:\camera\"
Powershell -Executionpolicy bypass -File C:\camera\sort.ps1
Hi,Is there a way for 2330L to automatically create folders with date-hours on ftp/NAS, like on SD card? (or like the DCS-942L is doing via ftp?)It would be extremely easy to navigate folders, instead of having e.g. a unique folder with 100k filesThank you