ARCed.Forms.ARChiveForm.RefreshARChiveList C# (CSharp) Method

RefreshARChiveList() private method

private RefreshARChiveList ( ) : void
return void
        private void RefreshARChiveList()
        {
            this.listViewARChives.Items.Clear();
            this._archives = Directory.GetFiles(Project.BackupDirectory, "*.7z");
            this.listViewARChives.BeginUpdate();
            foreach (string filename in this._archives)
            {
                var info = new FileInfo(filename);
                string[] columns =
                {
                    info.CreationTime.ToString(),
                    (info.Length / 1000).ToString(),
                    Path.GetFileNameWithoutExtension(filename)
                };
                this.listViewARChives.Items.Add(new ListViewItem(columns) { ImageIndex = 0, Tag = filename });
            }
            this.listViewARChives.EndUpdate();
        }