console application current path
C#
3
Posts
3
Posters
0
Views
1
Watching
-
hi friends how to get current console application path thanks
-
hi friends how to get current console application path thanks
l.laxmikant wrote:
how to get current console application path
That is very vague. Are you looking for the startup directory or the current working directory? The latter can be found in the Environment class.
xacc.ide - now with TabsToSpaces support
IronScheme - 1.0 beta 1 - out now!
((lambda (x) `((lambda (x) ,x) ',x)) '`((lambda (x) ,x) ',x)) -
hi friends how to get current console application path thanks
Environment.CurrentDirectory
Environment.CommandLineSimon