Index: trunk/jenga/src/common/Path.cpp
===================================================================
--- trunk/jenga/src/common/Path.cpp	(revision 314)
+++ trunk/jenga/src/common/Path.cpp	(revision 314)
@@ -0,0 +1,23 @@
+#include <boost/foreach.hpp>
+#include <jenga/include/common/Path.h>
+
+#include <windows.h>
+
+
+bool Jenga::Common::Path::IsExistFile() const
+{
+	WIN32_FIND_DATA wfd;
+	HANDLE hFind = FindFirstFile( fullPath.c_str() , &wfd );
+	if( hFind != INVALID_HANDLE_VALUE ){
+		FindClose( hFind );
+		if( wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY )
+		{
+			// ディレクトリ
+			return false;
+		}
+
+		return true;
+	}
+
+	return false;
+}
