Ignore:
Timestamp:
Aug 13, 2008, 10:42:13 PM (16 years ago)
Author:
dai
Message:
  • Web設定をオプションダイアログから除去した(不要な機能)。
  • Jenga::Common::Environment::GetUserAppDirメソッドを追加。
  • Jenga::Common::Directoryクラスコンストラクタを修正。
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/jenga/src/common/Directory.cpp

    r694 r718  
    88    if ( isMake )
    99    {
    10         if (!::MakeSureDirectoryPathExists(path.c_str()))
     10        std::string tempPath = path;
     11        if( !tempPath.empty() && tempPath[tempPath.size()-1] != '\\' )
     12        {
     13            tempPath += "\\";
     14        }
     15        if (!::MakeSureDirectoryPathExists(tempPath.c_str()))
    1116        {
    1217            Jenga::Throw( "MakeSureDirectoryPathExists failed!" );
Note: See TracChangeset for help on using the changeset viewer.