ListFiles

サマリ

Returns a list of files in the current workspace based on a query string. Specifying search conditions can be used to limit the results.

説明

The workspace environment must be set first before using several of the List functions, including ListDatasets, ListFeatureClasses, ListFiles, ListRasters, ListTables, and ListWorkspaces.

構文

ListFiles ({wild_card})
パラメータ説明データ タイプ
wild_card

ワイルドカードを使用して、返される結果を絞り込むことができます。ワイルドカードを指定しない場合は、すべての値が返されます。

String
リターン
データ タイプ説明
String

A list of files.

コードのサンプル

ListFiles example

Copy a list of CSV files to dBASE format.

import arcpy
from arcpy import env
import os

env.workspace = "c:/temp"

# Copy each file with a .csv extension to a dBASE file
#
for file in arcpy.ListFiles("*.csv"):
    # Use splitext to set the output table name
    #
    dbfFile = os.path.splitext(file)[0] + ".dbf"
    arcpy.CopyRows_management(file, dbfFile)

関連項目


7/10/2012