From ada08b2053cd018c6b6cc4c1090eb1d9073f2c20 Mon Sep 17 00:00:00 2001 From: Sam Izzo Date: Fri, 1 Apr 2016 15:23:29 +1100 Subject: [PATCH] Added file count to stats label. --- SteamCloudFileManager/MainForm.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SteamCloudFileManager/MainForm.cs b/SteamCloudFileManager/MainForm.cs index 1aff118..7d9a6e1 100644 --- a/SteamCloudFileManager/MainForm.cs +++ b/SteamCloudFileManager/MainForm.cs @@ -75,7 +75,8 @@ void updateQuota() if (storage == null) throw new InvalidOperationException("Not connected"); int totalBytes, availBytes; storage.GetQuota(out totalBytes, out availBytes); - quotaLabel.Text = string.Format("{0}/{1} bytes used", totalBytes - availBytes, totalBytes); + var numFiles = remoteListView.Items.Count; + quotaLabel.Text = string.Format("{2} files, {0}/{1} bytes used", totalBytes - availBytes, totalBytes, numFiles); } private void downloadButton_Click(object sender, EventArgs e)