Skip to content

Commit

Permalink
minor upd
Browse files Browse the repository at this point in the history
  • Loading branch information
fel88 committed Mar 8, 2023
1 parent 98091b2 commit 6ee2a64
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions DeepNestPort/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,9 @@ private void listView1_SelectedIndexChanged(object sender, EventArgs e)

public void UpdateFilesList(string path)
{
if (!Directory.Exists(path))
return;

var di = new DirectoryInfo(path);
groupBox3.Text = "Files: " + di.FullName;
listView3.Items.Clear();
Expand Down

0 comments on commit 6ee2a64

Please sign in to comment.