How to list files from sharedDirectory?

1.5k Views Asked by At

I tried below code for access network shared directory.But it worked if credentials not needed.

Once i have to pass the credentials it may be worked.

But i don't how to pass credentials for sharedDrive in following code.

File f = new File("//hostname/sharedDrive/Folder");

         // returns pathnames for files and directory
File[]  paths = f.listFiles();

Anyone suggest me way to access folder with credentials in java without using external libraries?

1

There are 1 best solutions below

1
On

use with constructor for NtlmPasswordAuthentication

NtlmPasswordAuthentication ntlmAuthentication =
       NtlmPasswordAuthentication(domain, username, password);
SmbFile newFile = new SmbFile("smb://hostname/sharedDrive/Folder",ntlmAuthentication);

or directly

SmbFile newFile = new SmbFile("smb://hostname/sharedDrive/Folder",
       new NtlmPasswordAuthentication("", username, password));

or (if no password needed)

SmbFile newFile = new SmbFile("smb://hostname/sharedDrive/Folder",
       NtlmPasswordAuthentication.ANONYMOUS);