FTP Snapshot Folders

Have some questions or having issues with your IP Camera(s), Post them here for the mods and other users to assist you with.
Post Reply
shibuminet
Posts: 7
Joined: Tue Apr 25, 2017 4:34 pm

FTP Snapshot Folders

Post by shibuminet »

Does anyone know how to configure FTP snapshots to save to only one folder and not create a new folder every minute? During testing the snapshots would upload to the FTP server but were creating new folders every minute. This will prove to very challenging in trying to pull the image to present on a web page.

Camera Info
Amcrest IP2M-850EB
Software Version2.400.AC01.0.R.T4.2022.3N.NR, build : 2016-08-04
WEB Version3.2.1.329959
ONVIF Version2.4.2
PTZ Version2.04.28.RHNTHCB

Thanks in advance for any assistance!
ftp folders.png
ftp folders.png (89.1 KiB) Viewed 1429 times
shibuminet
Posts: 7
Joined: Tue Apr 25, 2017 4:34 pm

Re: FTP Snapshot Folders

Post by shibuminet »

I received a message back from Amcrest Tech support stating the following:
Unfortunately, this is not an option at the moment. Our R&D team is working on giving the FTP folder a better & more personalized configuration for next firmware releases but, as I said, the folder structure is the only one available at the moment
.

Has anyone out there written a script they would like to share that will copy the images from these directories into a single directory on a Windows server?

Thanks!
zephxiii
Posts: 1
Joined: Sun Nov 19, 2017 7:31 pm

Re: FTP Snapshot Folders

Post by zephxiii »

I am using other brand camera at work, and have Amcrest at home (trialing). Both are recording to FTP.

Other brand camera saves all files into same folder on FTP with time stamped file names. This much much easier to use than having to dig down through a bunch of folders which is highly unproductive.

However there is a script you can use in windows:

For open cmd line:

Code: Select all

FOR /R "C:\Source Folder" %i IN (*.jpg) DO MOVE "%i" "C:\Staging Folder"
for batch file:

Code: Select all

FOR /R "C:\Source Folder" %%i IN (*.jpg) DO MOVE %"%i" "C:\Staging Folder"
The difference between the two being %i and %%i
jasonallen19
Posts: 1
Joined: Thu Jan 23, 2020 1:58 pm

Re: FTP Snapshot Folders

Post by jasonallen19 »

Just ran into this issue. It's beyond tedious to have to search through folders for individual photos.

It's so unintuitive as to render the entire feature useless. I'm just going to disable snapshots and forget about it.... at least until they patch it to dump all photos to a single folder or something.
User avatar
longedge
Site Admin
Posts: 591
Joined: Fri Mar 31, 2017 9:34 am

Re: FTP Snapshot Folders

Post by longedge »

TBH I find the naming convention useful. I can go straight to a day and hour to search for a snapshot. With the latest firmware folders don't go any 'finer' than the hour.

If it's of interest, I've got the empty folders problem nailed with a batch file, so simple and works like a dream. I only wish that all problems were as easy to solve :D

My NAS folder for snapshots from all three cameras is mapped to Z: and the following on my desktop named delete_folders.bat

Code: Select all

Z:
for /f "delims=" %%d in ('dir /s /b /ad ^| sort /r') do rd "%%d"
edit - Welcome to the forum :D
My AMCREST Cameras:-
2 x IP3M-941B firmware V2.620.00AC00.3.R, Build Date: 2019-12-18
1 x IP2M-841B firmware V2.420.AC00.18.R, Build Date: 2019-08-03
Sequoia1321
Posts: 9
Joined: Mon Jan 20, 2020 2:10 pm

Re: FTP Snapshot Folders

Post by Sequoia1321 »

Yes. I agree this is a problem. Folders structure shouldn't be so tedious. Prefer it be a folder for each day, no need for hours folder as they are time stamped.
Post Reply