BuildReportTool.Util.GetFolderSizeReadable C# (CSharp) Метод

GetFolderSizeReadable() публичный статический Метод

public static GetFolderSizeReadable ( string folderPath ) : string
folderPath string
Результат string
	public static string GetFolderSizeReadable(string folderPath)
	{
		if (!Directory.Exists(folderPath))
		{
			return "0 B";
		}

		return GetBytesReadable(GetFolderSizeInBytes(folderPath));
	}