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

org.zodiac.boot.file.FileProxy Maven / Gradle / Ivy

The newest version!
package org.zodiac.boot.file;

import java.io.File;

/**
 * 文件代理接口。
 *
 */
public interface FileProxy {

    /**
     * 返回路径[物理路径][虚拟路径]。
     *
     * @param file 文件
     * @param dir 目录
     * @return 路径列表
     */
    String[] path(File file, String dir);

    /**
     * 文件重命名策略。
     *
     * @param file 文件
     * @param path 路径
     * @return 文件对象
     */
    File rename(File file, String path);

    /**
     * 图片压缩。
     *
     * @param path 路径
     */
    void compress(String path);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy