Python/pathlib/Path/is mount

من موسوعة حسوب
اذهب إلى التنقل اذهب إلى البحث

التابع PurePath.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.

البنية العامة

المعاملات

بدون معاملات

القيمة المعادة

يعيد هذا التابع القيمة المنطقية True إذا كان المسار هو نقطة تثبيت (mount point) .

أمثلة

انظر أيضًا

مصادر