Skip to main content

Mojo function

isfile

isfile[PathLike: PathLike, //](path: PathLike) -> Bool

Test whether a path is a regular file.

Example:

from std.os.path import isfile

isfile("/etc/hosts")  # returns True
isfile("/tmp")        # returns False (it's a directory)

Parameters:

  • PathLike (PathLike): The type conforming to the os.PathLike trait.

Args:

  • path (PathLike): The path to the directory.

Returns:

Bool: Returns True if the path is a regular file.

Was this page helpful?