本文整理匯總了Java中jcifs.smb.SmbFile.length方法的典型用法代碼示例。如果您正苦於以下問題:Java SmbFile.length方法的具體用法?Java SmbFile.length怎麽用?Java SmbFile.length使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類jcifs.smb.SmbFile
的用法示例。
在下文中一共展示了SmbFile.length方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: SmbFile2EncFSFileInfo
import jcifs.smb.SmbFile; //導入方法依賴的package包/類
private EncFSFileInfo SmbFile2EncFSFileInfo(SmbFile smbFile){
EncFSFileInfo result;
try {
String name = smbFile.getName();
//transform parent absolute path into path relative to server path
String relativePath=this.getRelativePathFromAbsolutePath(smbFile.getParent());
if (name.endsWith("/")) name=name.substring(0,name.length()-1);
result = new EncFSFileInfo(name,relativePath,smbFile.isDirectory(),smbFile.getLastModified(),smbFile.length(),true,true,true);
} catch (Exception e){
throw new RuntimeException(e);
}
return result;
}
示例2: SMBFileAttributes
import jcifs.smb.SmbFile; //導入方法依賴的package包/類
/**
* Internal constructor for {@link SMBFileAttributes}.
*
* @param file {@link SmbFile} for which to create the attributes.
* @throws IOException If something goes wrong while accessing the file.
*/
SMBFileAttributes(SmbFile file) throws IOException {
this.attributes = file.getAttributes();
this.created = file.createTime();
this.modified = file.lastModified();
this.length = file.length();
this.code = file.hashCode();
}
示例3: compareSizes
import jcifs.smb.SmbFile; //導入方法依賴的package包/類
protected int compareSizes ( SmbFile f1, String f1name, SmbFile f2 ) throws IOException {
long diff;
if ( f1.isDirectory() != f2.isDirectory() ) {
return f1.isDirectory() ? -1 : 1;
}
if ( f1.isDirectory() ) {
return f1name.compareToIgnoreCase(f2.getName());
}
diff = f1.length() - f2.length();
if ( diff == 0 ) {
return f1name.compareToIgnoreCase(f2.getName());
}
return diff > 0 ? -1 : 1;
}