Python Language os.path

30% OFF - 9th Anniversary discount on Entity Framework Extensions until December 15 with code: ZZZANNIVERSARY9

Introduction

This module implements some useful functions on pathnames. The path parameters can be passed as either strings, or bytes. Applications are encouraged to represent file names as (Unicode) character strings.

Syntax

  • os.path.join(a, *p)
  • os.path.basename(p)
  • os.path.dirname(p)
  • os.path.split(p)
  • os.path.splitext(p)


Got any Python Language Question?