Impl 3659: Configuring
From CFTP
This explains configuration for the latest Version 1.00
The plug-in is configured in the file conf/beans.xml located in your server's home directory.
MDTM / MLST / MLSD Commands
There is just one property you may change.
<bean id="mdtmCommand" class="com.coldcore.coloradoftp.plugin.impl3659.command.MdtmCommand"... <property name="dateFormat" value="yyyyMMddHHmmss.SSS"/> </bean>
<bean id="mlstCommand" class="com.coldcore.coloradoftp.plugin.impl3659.command.MlstCommand"... <property name="dateFormat" value="yyyyMMddHHmmss.SSS"/> </bean>
<bean id="mlsdCommand" class="com.coldcore.coloradoftp.plugin.impl3659.command.MlsdCommand"... <property name="dateFormat" value="yyyyMMddHHmmss.SSS"/> </bean>
dateFormat
Date format pattern. Default is yyyyMMddHHmmss. The property must match the following regular expression:
yyyyMMddHHmmss(\.[S]{1,3}){0,1}
Return to Plug-in: Impl 3659