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 Snapshot Folders
-
- Posts: 7
- Joined: Tue Apr 25, 2017 4:34 pm
Re: FTP Snapshot Folders
I received a message back from Amcrest Tech support stating the following:
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!
.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!
Re: FTP Snapshot Folders
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:
for batch file:
The difference between the two being %i and %%i
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"
Code: Select all
FOR /R "C:\Source Folder" %%i IN (*.jpg) DO MOVE %"%i" "C:\Staging Folder"
-
- Posts: 1
- Joined: Thu Jan 23, 2020 1:58 pm
Re: FTP Snapshot Folders
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.
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.
Re: FTP Snapshot Folders
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
My NAS folder for snapshots from all three cameras is mapped to Z: and the following on my desktop named delete_folders.bat
edit - Welcome to the forum 
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

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"

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
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
-
- Posts: 9
- Joined: Mon Jan 20, 2020 2:10 pm
Re: FTP Snapshot Folders
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.