當前位置: 首頁>>代碼示例>>Java>>正文


Java FileUtils.sizeOfDirectory方法代碼示例

本文整理匯總了Java中org.apache.commons.io.FileUtils.sizeOfDirectory方法的典型用法代碼示例。如果您正苦於以下問題:Java FileUtils.sizeOfDirectory方法的具體用法?Java FileUtils.sizeOfDirectory怎麽用?Java FileUtils.sizeOfDirectory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.commons.io.FileUtils的用法示例。


在下文中一共展示了FileUtils.sizeOfDirectory方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: compare

import org.apache.commons.io.FileUtils; //導入方法依賴的package包/類
/**
 * Compare the length of two files.
 * 
 * @param file1 The first file to compare
 * @param file2 The second file to compare
 * @return a negative value if the first file's length
 * is less than the second, zero if the lengths are the
 * same and a positive value if the first files length
 * is greater than the second file.
 * 
 */
public int compare(File file1, File file2) {
    long size1 = 0;
    if (file1.isDirectory()) {
        size1 = sumDirectoryContents && file1.exists() ? FileUtils.sizeOfDirectory(file1) : 0;
    } else {
        size1 = file1.length();
    }
    long size2 = 0;
    if (file2.isDirectory()) {
        size2 = sumDirectoryContents && file2.exists() ? FileUtils.sizeOfDirectory(file2) : 0;
    } else {
        size2 = file2.length();
    }
    long result = size1 - size2;
    if (result < 0) {
        return -1;
    } else if (result > 0) {
        return 1;
    } else {
        return 0;
    }
}
 
開發者ID:fesch,項目名稱:Moenagade,代碼行數:34,代碼來源:SizeFileComparator.java

示例2: actionPerformed

import org.apache.commons.io.FileUtils; //導入方法依賴的package包/類
@Override
public void actionPerformed(AnActionEvent e) {
    cacheFile = new File(Constant.CACHE_PATH);
    if (!cacheFile.exists()) {
        cacheFile.mkdirs();
    }
    long size = FileUtils.sizeOfDirectory(cacheFile);
    DialogBuilder builder = new DialogBuilder();
    builder.setTitle(Constant.TITLE);
    builder.resizable(false);
    builder.setCenterPanel(new JLabel(String.format("Currently occupy storage %.2fM, "
            + "Clean Cache immediately?", size/1024.0/1024.0),
            Messages.getInformationIcon(), SwingConstants.CENTER));
    builder.addOkAction().setText("Clean Now");
    builder.addCancelAction().setText("Cancel");
    builder.setButtonsAlignment(SwingConstants.RIGHT);
    if (builder.show() == 0) {
        clean();
    }
}
 
開發者ID:pengwei1024,項目名稱:AndroidSourceViewer,代碼行數:21,代碼來源:CleanAction.java

示例3: accept

import org.apache.commons.io.FileUtils; //導入方法依賴的package包/類
@Override
public boolean accept(File pathname) {
    if (pathname.getName().startsWith(FilenameUtils.getBaseName(recordFileName) + "_")) {
        if (pathname.isFile()) {
            //                    total += pathname.length();
            total += FileUtils.sizeOf(pathname);
        } else {
            pathname.listFiles(this);
            total += FileUtils.sizeOfDirectory(pathname);
        }
    }

    return false;
}
 
開發者ID:intranda,項目名稱:goobi-viewer-indexer,代碼行數:15,代碼來源:Hotfolder.java

示例4: getFileSize

import org.apache.commons.io.FileUtils; //導入方法依賴的package包/類
/**
 * return the file size.
 *
 * @return the file size.
 */
@Override
public long getFileSize() {
	return FileUtils.sizeOfDirectory(DIR);
}
 
開發者ID:coranos,項目名稱:neo-java,代碼行數:10,代碼來源:BlockDbMapDbImpl.java

示例5: getFileSize

import org.apache.commons.io.FileUtils; //導入方法依賴的package包/類
/**
 * return the file size.
 *
 * @return the file size.
 */
@Override
public long getFileSize() {
	return FileUtils.sizeOfDirectory(fileSizeDir);
}
 
開發者ID:coranos,項目名稱:neo-java,代碼行數:10,代碼來源:BlockDbH2Impl.java


注:本文中的org.apache.commons.io.FileUtils.sizeOfDirectory方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。