Returns a list of files matching an optional wildcard pattern.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
filespec (fs) | unicode | ||
|
|||
folder (fld) | unicode | ||
|
Derived from mel command maya.cmds.getFileList
Example:
import pymel.core as pm
# List the contents of the user's projects directory
#
pm.getFileList( folder=pm.internalVar(userWorkspaceDir=True) )
# Result: [u'.DS_Store', u'default', u'mydir', u'papervision'] #
# List all MEL files in the user's script directory
#
pm.getFileList( folder=pm.internalVar(userScriptDir=True), filespec='*.mel' )
# Result: [] #