chdir equivalent in c#
C#
2
Posts
1
Posters
0
Views
1
Watching
-
I need to change the current working directory to a different directory. But I cant find any method for this in c#. However, I found a equivalent method available in vb.net(chdir). Anyidea, on how to do this in c#. Thanks Kannan
-
I need to change the current working directory to a different directory. But I cant find any method for this in c#. However, I found a equivalent method available in vb.net(chdir). Anyidea, on how to do this in c#. Thanks Kannan
I found it, there is a get/set property in Environment class. Environment.CurrentDirectory Thanks Kannan