1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title><%GLibFileTest>: </title>
- <meta name="generator" content="DocBook XSL Stylesheets V1.79.2">
- <link rel="home" href="index.html" title="">
- <link rel="up" href="ch01.html" title="GLib">
- <link rel="prev" href="re17.html" title="<%GLibFileSetContentsFlags>">
- <link rel="next" href="re19.html" title="<%GLibFormatSizeFlags>">
- <meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
- <link rel="stylesheet" href="style.css" type="text/css">
- </head>
- <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
- <td width="100%" align="left" class="shortcuts"></td>
- <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
- <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
- <td><a accesskey="p" href="re17.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
- <td><a accesskey="n" href="re19.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
- </tr></table>
- <div class="refentry">
- <a name="id-1.1.19"></a><div class="titlepage"></div>
- <div class="refnamediv">
- <h2><%GLibFileTest></h2>
- <p><%GLibFileTest></p>
- </div>
- <div class="refsect1">
- <a name="id-1.1.19.2"></a><h2>Description</h2>
- <p>A test to perform on a file using <code class="function">g_file_test()</code>.</p>
- </div>
- <div class="refsect1">
- <a name="id-1.1.19.3"></a><h2>Members</h2>
- <div class="refsect2">
- <a name="id-1.1.19.3.2"></a><h3>is-regular</h3>
- <p class="remark"><em><span class="remark">alias <code class="code">G_FILE_TEST_IS_REGULAR</code></span></em></p>
- <p><code class="constant">TRUE</code> if the file is a regular file
- (not a directory). Note that this test will also return <code class="constant">TRUE</code>
- if the tested file is a symlink to a regular file.</p>
- </div>
- <div class="refsect2">
- <a name="id-1.1.19.3.3"></a><h3>is-symlink</h3>
- <p class="remark"><em><span class="remark">alias <code class="code">G_FILE_TEST_IS_SYMLINK</code></span></em></p>
- <p><code class="constant">TRUE</code> if the file is a symlink.</p>
- </div>
- <div class="refsect2">
- <a name="id-1.1.19.3.4"></a><h3>is-dir</h3>
- <p class="remark"><em><span class="remark">alias <code class="code">G_FILE_TEST_IS_DIR</code></span></em></p>
- <p><code class="constant">TRUE</code> if the file is a directory.</p>
- </div>
- <div class="refsect2">
- <a name="id-1.1.19.3.5"></a><h3>is-executable</h3>
- <p class="remark"><em><span class="remark">alias <code class="code">G_FILE_TEST_IS_EXECUTABLE</code></span></em></p>
- <p><code class="constant">TRUE</code> if the file is executable.</p>
- </div>
- <div class="refsect2">
- <a name="id-1.1.19.3.6"></a><h3>exists</h3>
- <p class="remark"><em><span class="remark">alias <code class="code">G_FILE_TEST_EXISTS</code></span></em></p>
- <p><code class="constant">TRUE</code> if the file exists. It may or may not
- be a regular file.</p>
- </div>
- </div>
- </div>
- <div class="footer">
- <hr>Generated by GTK-Doc V1.33.1</div>
- </body>
- </html>
|