コード例 #1
0
ファイル: qzfile.cpp プロジェクト: chsticksel/ocamlczmq
///
//  Return true if the file is a directory. If you want this to reflect   
//  any external changes, call zfile_restat before checking this property.
bool QZfile::isDirectory ()
{
    bool rv = zfile_is_directory (self);
    return rv;
}
コード例 #2
0
JNIEXPORT jboolean JNICALL
Java_org_zeromq_czmq_Zfile__1_1isDirectory (JNIEnv *env, jclass c, jlong self)
{
    jboolean is_directory_ = (jboolean) zfile_is_directory ((zfile_t *) (intptr_t) self);
    return is_directory_;
}
コード例 #3
0
ファイル: QmlZfile.cpp プロジェクト: AxelVoitier/czmq
///
//  Return true if the file is a directory. If you want this to reflect   
//  any external changes, call zfile_restat before checking this property.
bool QmlZfile::isDirectory () {
    return zfile_is_directory (self);
};