Index: src/ch/AppHelper.cpp =================================================================== diff -u -N -raa6bff57279b9f9cfc276e9adab2763e2900878d -r2457755b4084e3d1c80a8e7c77c9f0996312941b --- src/ch/AppHelper.cpp (.../AppHelper.cpp) (revision aa6bff57279b9f9cfc276e9adab2763e2900878d) +++ src/ch/AppHelper.cpp (.../AppHelper.cpp) (revision 2457755b4084e3d1c80a8e7c77c9f0996312941b) @@ -229,13 +229,13 @@ rStrPath += _T('\\'); // make sure to create the required directories if they does not exist - rStrPath += _T("\\Copy Handler"); + rStrPath += _T("Copy Handler"); if(!CreateDirectory(rStrPath, NULL) && GetLastError() != ERROR_ALREADY_EXISTS) return false; // create directory for tasks - rStrPath += _T("\\Tasks"); - if(!CreateDirectory(rStrPath, NULL) && GetLastError() != ERROR_ALREADY_EXISTS) +// rStrPath += _T("\\Tasks"); + if(!CreateDirectory(rStrPath + _T("\\Tasks"), NULL) && GetLastError() != ERROR_ALREADY_EXISTS) return false; return true;