All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.featherfly.common.io.file.rename.TimestampRenamePolicy Maven / Gradle / Ivy


package cn.featherfly.common.io.file.rename;


/**
 * 

* 当前时间戳重命名策略 *

* * @author 钟冀 */ public class TimestampRenamePolicy extends AbstractExtNameRenamePolicy{ /** */ public TimestampRenamePolicy() { } /** * {@inheritDoc} */ @Override public String rename(String fileName) { return appendExtName(System.currentTimeMillis() + "", fileName); } // ******************************************************************** // property // ******************************************************************** }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy