How can I check that the selected Node is a File or directory in a TreeView
Control in C#?
I am working on window form in C#. I can check through the file extension but there are so many file extensions so it makes for a lengthy code. Can any body give me a small method for this?
You can use the
node.GetType()
property of the particular node to find out that it is directory or file. I.e.:Hope it helps.