codice:
private void TwImg_Click(object sender, System.EventArgs e)
		{
			TreeNode tnSel = TwImg.SelectedNode;
			if (tnSel.Tag != null) 
			{
				PropImmagini myFI = (PropImmagini)tnSel.Tag;
				string path = myFI.Path;
				foreach (string s in Directory.GetDirectories(myFI.Path))
				{
					PropImmagini fi = new PropImmagini(s); 
					TreeNode tn = new TreeNode(fi.ToString());
					tn.Tag = fi;
					tnSel.Nodes.Add(tn);
				}
				TwImg.Invalidate();
			}
		}
Con PropImmagini che è una classe con proprietà nome file e percorso file