Jump to content

recording folder


smart25

Recommended Posts

  • 1 month later...
need to automate creating recording folder every day, becuse we recording 16 chanells 24 hours per date, then when the folder get too big, it take too much to open for review.

Any body has a solution for this problem?

 

 

Hi

 

We use a 3rd party utility that does exactly what u want.

 

 

If u want details let me know on this forum

Link to comment
Share on other sites

  • 2 months later...
need to automate creating recording folder every day, becuse we recording 16 chanells 24 hours per date, then when the folder get too big, it take too much to open for review.

Any body has a solution for this problem?

 

I created a batch file to do this , this is what my batch file looks like.

 

==============================

 

 

cd\Inetpub\ftproot\FIRE_DISPATCH

 

DEL *.vrd

 

MD FIRE_DISPATCH_%Date:~-4,4%%Date:~-10,2%%Date:~-7,2%

 

MOVE *.mp3 FIRE_DISPATCH_%Date:~-4,4%%Date:~-10,2%%Date:~-7,2%

 

 

 

cd\Inetpub\ftproot\FIRE_REPEATER

 

DEL *.vrd

 

MD FIRE_REPEATER_%Date:~-4,4%%Date:~-10,2%%Date:~-7,2%

 

MOVE *.mp3 FIRE_REPEATER_%Date:~-4,4%%Date:~-10,2%%Date:~-7,2%

 

 

 

 

cd\Inetpub\ftproot\LIFESTAR

 

DEL *.vrd

 

MD LIFESTAR_%Date:~-4,4%%Date:~-10,2%%Date:~-7,2%

 

MOVE *.mp3 LIFESTAR_%Date:~-4,4%%Date:~-10,2%%Date:~-7,2%

 

============================================

 

I have it scheduled in the windows task manager to run every night at 23:59

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...