Lines Matching refs:follow_symlinks
1649 If the function also supports *dir_fd* or *follow_symlinks* arguments, it's
1667 * **not following symlinks:** If *follow_symlinks* is
1673 You can check whether or not *follow_symlinks* is supported for a particular
1679 .. function:: access(path, mode, *, dir_fd=None, effective_ids=False, follow_symlinks=True)
1691 descriptors <dir_fd>` and :ref:`not following symlinks <follow_symlinks>`.
1729 Added the *dir_fd*, *effective_ids*, and *follow_symlinks* parameters.
1767 .. function:: chflags(path, flags, *, follow_symlinks=True)
1785 This function can support :ref:`not following symlinks <follow_symlinks>`.
1792 The *follow_symlinks* argument.
1798 .. function:: chmod(path, mode, *, dir_fd=None, follow_symlinks=True)
1826 following symlinks <follow_symlinks>`.
1838 and the *dir_fd* and *follow_symlinks* arguments.
1844 .. function:: chown(path, uid, gid, *, dir_fd=None, follow_symlinks=True)
1851 following symlinks <follow_symlinks>`.
1862 and the *dir_fd* and *follow_symlinks* arguments.
1908 ``os.chflags(path, flags, follow_symlinks=False)``.
1923 ``os.chmod(path, mode, follow_symlinks=False)``.
1936 to ``os.chown(path, uid, gid, follow_symlinks=False)``.
1946 .. function:: link(src, dst, *, src_dir_fd=None, dst_dir_fd=None, follow_symlinks=True)
1952 following symlinks <follow_symlinks>`.
1962 Added the *src_dir_fd*, *dst_dir_fd*, and *follow_symlinks* arguments.
2015 follow_symlinks=False)``.
2507 ``os.stat(entry.path, follow_symlinks=False).st_ino`` to fetch up-to-date
2513 .. method:: is_dir(*, follow_symlinks=True)
2519 If *follow_symlinks* is ``False``, return ``True`` only if this entry
2524 for *follow_symlinks* ``True`` and ``False``. Call :func:`os.stat` along
2532 *follow_symlinks* is ``False``.
2537 .. method:: is_file(*, follow_symlinks=True)
2543 If *follow_symlinks* is ``False``, return ``True`` only if this entry
2567 .. method:: stat(*, follow_symlinks=True)
2571 ``follow_symlinks=False`` argument.
2574 only requires a system call if *follow_symlinks* is ``True`` and the
2583 for *follow_symlinks* ``True`` and ``False``. Call :func:`os.stat` to
2599 .. function:: stat(path, *, dir_fd=None, follow_symlinks=True)
2608 ``follow_symlinks=False``, or use :func:`lstat`.
2611 :ref:`not following symlinks <follow_symlinks>`.
2613 On Windows, passing ``follow_symlinks=False`` will disable following all
2642 Added the *dir_fd* and *follow_symlinks* arguments, specifying a file
2650 system are now followed, and passing ``follow_symlinks=False``
2654 ``follow_symlinks=False`` had been specified instead of raising an error.
2970 accept ``False`` for their *follow_symlinks* parameter on the local platform.
2972 functionality Python uses to implement *follow_symlinks* is not available
2974 may support *follow_symlinks* always allow specifying the parameter, but
2976 available. (Specifying ``True`` for *follow_symlinks* is always supported
2980 *follow_symlinks* parameter, use the ``in`` operator on
2982 to ``True`` if you may specify ``follow_symlinks=False`` when calling
3077 .. function:: utime(path, times=None, *[, ns], dir_fd=None, follow_symlinks=True)
3105 following symlinks <follow_symlinks>`.
3111 and the *dir_fd*, *follow_symlinks*, and *ns* parameters.
3215 .. function:: fwalk(top='.', topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None)
3228 <dir_fd>` and :ref:`not following symlinks <follow_symlinks>`. Note however
3230 *follow_symlinks* is ``False``.
3266 .. audit-event:: os.fwalk top,topdown,onerror,follow_symlinks,dir_fd os.fwalk
3427 .. function:: getxattr(path, attribute, *, follow_symlinks=True)
3435 :ref:`not following symlinks <follow_symlinks>`.
3443 .. function:: listxattr(path=None, *, follow_symlinks=True)
3451 :ref:`not following symlinks <follow_symlinks>`.
3459 .. function:: removexattr(path, attribute, *, follow_symlinks=True)
3467 :ref:`not following symlinks <follow_symlinks>`.
3475 .. function:: setxattr(path, attribute, value, flags=0, *, follow_symlinks=True)
3487 :ref:`not following symlinks <follow_symlinks>`.