JCIFS Example Functions

JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java. CIFS is the standard file sharing protocol on the Microsoft Windows platform (e.g. Map Network Drive …). This client is used extensively in production on large Intranets.
Source :
http://jcifs.samba.org/
package ftpjcifs;
import java.util.LinkedList;
import jcifs.UniAddress;
import jcifs.smb.*;
/**
*
* @author Reza
*/
public class SmbFunction
{
private UniAddress domain;
private NtlmPasswordAuthentication authentication;
public SmbFunction()
{
}
/**
*
* @param address
* @param username
* @param password
* @throws java.lang.Exception
*/
public void login(String address, String username, String password) throws Exception
{
setDomain(UniAddress.getByName(address));
setAuthentication(new NtlmPasswordAuthentication(address, username, password));
SmbSession.logon(getDomain(), authentication);
}
/**
*
* @param path
* @return
* @throws java.lang.Exception
*/
public LinkedList<String> getList(String path) throws Exception
{
LinkedList<String> fList = new LinkedList<String>();
SmbFile f = new SmbFile(path,authentication);
SmbFile[] fArr = f.listFiles();
for(int a = 0; a < fArr.length; a++)
{
fList.add(fArr[a].getName());
System.out.println(fArr[a].getName());
}
return fList;
}
/**
*
* @param path
* @return
* @throws java.lang.Exception
*/
public boolean checkDirectory(String path) throws Exception
{
if(!isExist(path))
{
System.out.println(path + " not exist");
return false;
}
if(!isDir(path))
{
System.out.println(path + " not a directory");
return false;
}
return true;
}
/**
*
* @param path
* @return
* @throws java.lang.Exception
*/
public boolean isExist(String path) throws Exception
{
SmbFile sFile = new SmbFile(path, authentication);
return sFile.exists();
}
/**
*
* @param path
* @return
* @throws java.lang.Exception
*/
public boolean isDir(String path) throws Exception
{
SmbFile sFile = new SmbFile(path, authentication);
return sFile.isDirectory();
}
/**
*
* @param path
* @throws java.lang.Exception
*/
public void createDir(String path) throws Exception
{
SmbFile sFile = new SmbFile(path, authentication);
sFile.mkdir();
}
/**
*
* @param path
* @throws java.lang.Exception
*/
public void delete(String path) throws Exception
{
SmbFile sFile = new SmbFile(path, authentication);
sFile.delete();
}
/**
*
* @param path
* @return
* @throws java.lang.Exception
*/
public long size(String path) throws Exception
{
SmbFile sFile = new SmbFile(path, authentication);
return sFile.length();
}
/**
*
* @param path
* @return
* @throws java.lang.Exception
*/
public String getFileName(String path) throws Exception
{
SmbFile sFile = new SmbFile(path, authentication);
return sFile.getName();
}
/**
* @return the domain
*/
public UniAddress getDomain()
{
return domain;
}
/**
* @param domain the domain to set
*/
public void setDomain(UniAddress domain)
{
this.domain = domain;
}
/**
* @return the authentication
*/
public NtlmPasswordAuthentication getAuthentication()
{
return authentication;
}
/**
* @param authentication the authentication to set
*/
public void setAuthentication(NtlmPasswordAuthentication authentication)
{
this.authentication = authentication;
}
}
Categories: Java, Programming
CIFS




SocialVibe