> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kinetica.com/llms.txt
> Use this file to discover all available pages before exploring further.

# show_files

<div className="kinetica-pydoc">
  <div className="dl py method">
    <div className="dt sig sig-object py" id="gpudb.GPUdb.show_files"> <span className="sig-name descname"><span className="pre">show\_files</span></span><span className="sig-paren">(</span><span className="em sig-param"><span className="n"><span className="pre">paths</span></span><span className="o"><span className="pre">=</span></span><span className="default_value"><span className="pre">None</span></span></span>, <span className="em sig-param"><span className="n"><span className="pre">options</span></span><span className="o"><span className="pre">=</span></span><span className="default_value"><span className="pre">{"{"}{"}"}</span></span></span><span className="sig-paren">)</span><a href="https://github.com/kineticadb/kinetica-api-python/blob/master/gpudb/gpudb.py#L38624"><span className="viewcode-link"><span className="pre">\[source]</span></span></a></div>

    <div className="dd">
      <p>Shows information about files in <a className="reference external" href="/content/tools/kifs/">KiFS</a>. Can be used for individual files, or to show all files in a given directory.</p>
      <p><strong>Parameters</strong></p>

      <div className="blockquote">
        <div>
          <div className="dl">
            <div className="dt">paths (<span className="em">list of str</span>) –</div>

            <div className="dd">
              <p>File paths to show. Each path can be a KiFS directory name, or a full path to a KiFS file. File paths may contain wildcard characters after the KiFS directory delimiter.</p>
              <p>Accepted wildcard characters are asterisk (\*) to represent any string of zero or more characters, and question mark (?) to indicate a single character. The user can provide a single element (which will be automatically promoted to a list internally) or a list.</p>
            </div>

            <div className="dt">options (<span className="em">dict of str to str</span>) –</div>

            <div className="dd">
              <p>Optional parameters. The default value is an empty dict ( {"{"}{"}"} ).</p>
            </div>
          </div>
        </div>
      </div>

      <p><strong>Returns</strong></p>

      <div className="blockquote">
        <div>
          <p>A dict with the following entries–</p>

          <div className="dl simple">
            <div className="dt">file\_names (<span className="em">list of str</span>) –</div>

            <div className="dd">
              <p>A listing of files in the paths specified.</p>
            </div>

            <div className="dt">sizes (<span className="em">list of longs</span>) –</div>

            <div className="dd">
              <p>Size of each file, in bytes.</p>
            </div>

            <div className="dt">users (<span className="em">list of str</span>) –</div>

            <div className="dd">
              <p>User that created the file.</p>
            </div>

            <div className="dt">creation\_times (<span className="em">list of longs</span>) –</div>

            <div className="dd">
              <p>Creation time for each file, in milliseconds since epoch.</p>
            </div>

            <div className="dt">info (<span className="em">dict of str to str</span>) –</div>

            <div className="dd">
              <p>Additional information. Allowed keys are:</p>

              <ul className="simple">
                <li>
                  <p><strong>multipart\_uploads</strong> – JSON-encoded information about multipart uploads in progress.</p>
                </li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
