ID EN
Pathlib

PureWindowsPath

Python 3.11 🇮🇩 Bahasa Indonesia

Sebuah subkelas dari PurePath, ragam jalur ini mewakili jalur sistem file Windows, termasuk jalur UNC:

Syntax

PYTHON
class pathlib.PureWindowsPath(*pathsegments)

Contoh

Example 1
PYTHON
>>> PureWindowsPath('c:/Program Files/')
PureWindowsPath('c:/Program Files')
>>> PureWindowsPath('//server/share/file')
PureWindowsPath('//server/share/file')

See Also

PurePath PurePath