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

com.tencent.tcvectordb.utils.FileUtils Maven / Gradle / Ivy

package com.tencent.tcvectordb.utils;

import com.tencent.tcvectordb.model.param.enums.FileTypeEnum;

import java.io.File;

public class FileUtils {
    public static String getFileType(File file) {
        String fileName = file.getName();
        String fileType = fileName.substring(fileName.lastIndexOf(".")+1);
        return fileType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy