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

jcifs.smb.FileEntry Maven / Gradle / Ivy

Go to download

JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java

There is a newer version: 1.3.18.1
Show newest version
package jcifs.smb;

public interface FileEntry {

    String getName();
    int getType();
    int getAttributes();
    long createTime();
    long lastModified();
    long length();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy