Postfix Naming Rule
Description
This rule provides how to decode the specific symbol in the URL command input argument to conduct the full filename. The '%' is the head of these specific symbol for decoding. Here is the decoding mapping table.
Symbol Description Example %YYYY 4 digits for year 2009 for year 2009 %YY the last 2 digits of 4 digits year 09 for year 2009 %MM two digits for month. 01~12 01 for January %DD two digits for date. 01~31 01 for the 1st day of a month %hh two digits for hour. 00~23 ¡@ %mm two digits for minute. 00~59 ¡@ %ss two digits for second. 00~59 ¡@ %W a space character. ' ' ' ' %N camera name camera-1 %Y counter. It starts from 1 in every uploading task. The counter will be increased by 1 for next uploading file. 1,2,3,4,5,...
Example
1. name-%YYYY-%MM-%DD@%hh%mm%ss for time 2009/06/05 22:50:30.
The full name is
name-2009-06-05@225030
2. X_%W-%N_TEST%Y for camera name is 'my-camera' and three successive uploaded files.
The full name of these three files are
X_ -my-camera_TEST1, X_ -my-camera_TEST2, X_ -my-camera_TEST3
See Also
Back to