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

com.github.wzc789376152.file.Test Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.github.wzc789376152.file;

import jcifs.smb.SmbFile;

public class Test {
    public static void main(String[] args){
        try {
            SmbFile file = new SmbFile("smb://weizc:[email protected]/file/");
            if (!file.exists()) {
                System.out.println("no such folder");
            } else {
                SmbFile[] files = file.listFiles();
                for (SmbFile f : files) {
                    System.out.println(f.getName());
                }
            }
        }catch (Exception e){

        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy