Here you can find the source of getTreeSize(File root)
Parameter | Description |
---|---|
root | a parameter |
public static long getTreeSize(File root)
//package com.java2s; /******************************************************************************* * Copyright (c) 2010, 2012 Institute for Dutch Lexicology * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License.// w ww . ja va 2s.c o m *******************************************************************************/ import java.io.File; public class Main { /** * Get the size of a file or a directory tree * * @param root * @return size of the file or directory tree */ public static long getTreeSize(File root) { long size = 0; if (root.isFile()) size = root.length(); else { for (File f : root.listFiles()) { size += getTreeSize(f); } } return size; } }