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)