コード例 #1
0
ファイル: wfilenam.cpp プロジェクト: ABratovic/open-watcom-v2
bool WEXPORT WFileName::dirExists() const
{
    WFileName t;
    t.getCWD();
    if( setCWD() ) {
        t.setCWD();
        return( true );
    }
    return( false );
}
コード例 #2
0
ファイル: wfilenam.cpp プロジェクト: Ukusbobra/open-watcom-v2
bool WEXPORT WFileName::dirExists() const
{
    WFileName t;
    t.getCWD();
    if( setCWD() ) {
        t.setCWD();
        return TRUE;
    }
    return FALSE;
}