Python/pathlib/Path/is mount
التابع Path.is_mount
يعيد هذا التابع القيمة المنطقية True
إذا كان المسار هو نقطة تثبيت (mount point) .
New in version 3.7.
Return True if the path is a mount point: a point in a file system where a different file system has been mounted. On POSIX, the function checks whether path’s parent, path/.., is on a different device than path, or whether path/.. and path point to the same i-node on the same device — this should detect mount points for all Unix and POSIX variants. Not implemented on Windows.