Index: trunk/ab5.0/jenga/src/common/Path.cpp
===================================================================
--- trunk/ab5.0/jenga/src/common/Path.cpp	(revision 622)
+++ trunk/ab5.0/jenga/src/common/Path.cpp	(revision 623)
@@ -77,2 +77,8 @@
 	return MakeFullPath( relativePath, Jenga::Common::Environment::GetCurrentDir() );
 }
+std::string Jenga::Common::Path::ExtractDirPath( const std::string &filepath )
+{
+	Path path( filepath );
+	std::string result = path.GetDriveName() + path.GetDirName();
+	return result;
+}
