Link to home
Start Free TrialLog in
Avatar of pampa_analytica
pampa_analytica

asked on

Get current directory in VC++

Hi,

How to get current working directory in VC++?

Thanks in advance,
Pampa
ASKER CERTIFIED SOLUTION
Avatar of leflon
leflon
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nonubik
nonubik

Hi!
u can use this code
----------
CString strDirName;
GetCurrentDirectory(strDirName);
----------
good luck