Lines Matching refs:follow_symlinks
1516 If the function also supports *dir_fd* or *follow_symlinks* arguments, it's
1534 * **not following symlinks:** If *follow_symlinks* is
1540 You can check whether or not *follow_symlinks* is supported for a particular
1546 .. function:: access(path, mode, *, dir_fd=None, effective_ids=False, follow_symlinks=True)
1558 descriptors <dir_fd>` and :ref:`not following symlinks <follow_symlinks>`.
1596 Added the *dir_fd*, *effective_ids*, and *follow_symlinks* parameters.
1634 .. function:: chflags(path, flags, *, follow_symlinks=True)
1652 This function can support :ref:`not following symlinks <follow_symlinks>`.
1659 The *follow_symlinks* argument.
1665 .. function:: chmod(path, mode, *, dir_fd=None, follow_symlinks=True)
1693 following symlinks <follow_symlinks>`.
1705 and the *dir_fd* and *follow_symlinks* arguments.
1711 .. function:: chown(path, uid, gid, *, dir_fd=None, follow_symlinks=True)
1718 following symlinks <follow_symlinks>`.
1729 and the *dir_fd* and *follow_symlinks* arguments.
1775 ``os.chflags(path, flags, follow_symlinks=False)``.
1790 ``os.chmod(path, mode, follow_symlinks=False)``.
1803 to ``os.chown(path, uid, gid, follow_symlinks=False)``.
1813 .. function:: link(src, dst, *, src_dir_fd=None, dst_dir_fd=None, follow_symlinks=True)
1819 following symlinks <follow_symlinks>`.
1829 Added the *src_dir_fd*, *dst_dir_fd*, and *follow_symlinks* arguments.
1882 follow_symlinks=False)``.
2373 ``os.stat(entry.path, follow_symlinks=False).st_ino`` to fetch up-to-date
2379 .. method:: is_dir(\*, follow_symlinks=True)
2385 If *follow_symlinks* is ``False``, return ``True`` only if this entry
2390 for *follow_symlinks* ``True`` and ``False``. Call :func:`os.stat` along
2398 *follow_symlinks* is ``False``.
2403 .. method:: is_file(\*, follow_symlinks=True)
2409 If *follow_symlinks* is ``False``, return ``True`` only if this entry
2433 .. method:: stat(\*, follow_symlinks=True)
2437 ``follow_symlinks=False`` argument.
2440 only requires a system call if *follow_symlinks* is ``True`` and the
2449 for *follow_symlinks* ``True`` and ``False``. Call :func:`os.stat` to
2465 .. function:: stat(path, \*, dir_fd=None, follow_symlinks=True)
2474 ``follow_symlinks=False``, or use :func:`lstat`.
2477 :ref:`not following symlinks <follow_symlinks>`.
2479 On Windows, passing ``follow_symlinks=False`` will disable following all
2508 Added the *dir_fd* and *follow_symlinks* arguments, specifying a file
2516 system are now followed, and passing ``follow_symlinks=False``
2520 ``follow_symlinks=False`` had been specified instead of raising an error.
2836 accept ``False`` for their *follow_symlinks* parameter on the local platform.
2838 functionality Python uses to implement *follow_symlinks* is not available
2840 may support *follow_symlinks* always allow specifying the parameter, but
2842 available. (Specifying ``True`` for *follow_symlinks* is always supported
2846 *follow_symlinks* parameter, use the ``in`` operator on
2848 to ``True`` if you may specify ``follow_symlinks=False`` when calling
2943 .. function:: utime(path, times=None, *[, ns], dir_fd=None, follow_symlinks=True)
2971 following symlinks <follow_symlinks>`.
2977 and the *dir_fd*, *follow_symlinks*, and *ns* parameters.
3081 .. function:: fwalk(top='.', topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None)
3094 <dir_fd>` and :ref:`not following symlinks <follow_symlinks>`. Note however
3096 *follow_symlinks* is ``False``.
3132 .. audit-event:: os.fwalk top,topdown,onerror,follow_symlinks,dir_fd os.fwalk
3197 .. function:: getxattr(path, attribute, *, follow_symlinks=True)
3205 :ref:`not following symlinks <follow_symlinks>`.
3213 .. function:: listxattr(path=None, *, follow_symlinks=True)
3221 :ref:`not following symlinks <follow_symlinks>`.
3229 .. function:: removexattr(path, attribute, *, follow_symlinks=True)
3237 :ref:`not following symlinks <follow_symlinks>`.
3245 .. function:: setxattr(path, attribute, value, flags=0, *, follow_symlinks=True)
3257 :ref:`not following symlinks <follow_symlinks>`.