ConfigVariableFilename
from panda3d.core import ConfigVariableFilename
- class ConfigVariableFilename
Bases:
Bases:
ConfigVariable
This is a convenience class to specialize
ConfigVariable
as a Filename type. It is almost the same thing asConfigVariableString
, except it handles an implicitFilename.expand_from()
operation so that the user may put OS-specific filenames, or filenames based on environment variables, in the prc file.Inheritance diagram
- __init__(param0: ConfigVariableFilename)
- __init__(name: str)
- assign(value: Filename) ConfigVariableFilename
- c_str() str
These methods help the
ConfigVariableFilename
act like a Filename object.
- get_basename() str
Returns the basename part of the filename. This is everything in the filename after the rightmost slash, including any extensions.
- get_basename_wo_extension() str
Returns the basename part of the filename, without the file extension.
- get_dirname() str
Returns the directory part of the filename. This is everything in the filename up to, but not including the rightmost slash.
- get_extension() str
Returns the file extension. This is everything after the rightmost dot, if there is one, or the empty string if there is not.
- get_fullpath() str
Returns the entire filename: directory, basename, extension. This is the same thing returned by the string typecast operator, so this function is a little redundant.
- get_fullpath_wo_extension() str
Returns the full filename–directory and basename parts–except for the extension.