BuildReportTool.Util.GetFolderSizeReadable C# (CSharp) Method

GetFolderSizeReadable() public static method

public static GetFolderSizeReadable ( string folderPath ) : string
folderPath string
return string
	public static string GetFolderSizeReadable(string folderPath)
	{
		if (!Directory.Exists(folderPath))
		{
			return "0 B";
		}

		return GetBytesReadable(GetFolderSizeInBytes(folderPath));
	}