Hello,
I am working on a quick file browser project. i need to find a way to split a path:
(c:/somedir/somefile.txt)
into a string array:
[0] c
[1] somedir
[2] somefile.txt
is there any built in functionality to do this in c#? if not, does anybody know of any way that i can do this? Thank you very much for any help that you might be able to give, it will be much appreciated.
thanks, Andrew.
I am working on a quick file browser project. i need to find a way to split a path:
(c:/somedir/somefile.txt)
into a string array:
[0] c
[1] somedir
[2] somefile.txt
is there any built in functionality to do this in c#? if not, does anybody know of any way that i can do this? Thank you very much for any help that you might be able to give, it will be much appreciated.
thanks, Andrew.
Comment