Lines Matching refs:symbolic
137 symbolic links::
147 to ``PurePosixPath('bar')``, which is wrong if ``foo`` is a symbolic link
827 Return ``True`` if the path points to a directory (or a symbolic link
836 Return ``True`` if the path points to a regular file (or a symbolic link
857 Return ``True`` if the path points to a symbolic link, ``False`` otherwise.
865 Return ``True`` if the path points to a Unix socket (or a symbolic link
874 Return ``True`` if the path points to a FIFO (or a symbolic link
883 Return ``True`` if the path points to a block device (or a symbolic link
892 Return ``True`` if the path points to a character device (or a symbolic link
922 Like :meth:`Path.chmod` but, if the path points to a symbolic link, the
923 symbolic link's mode is changed rather than its target's.
928 Like :meth:`Path.stat` but, if the path points to a symbolic link, return
929 the symbolic link's information rather than its target's.
1006 Return the path to which the symbolic link points (as returned by
1124 Make this path a symbolic link to *target*. Under Windows,
1184 Remove this file or symbolic link. If the path points to a directory,
1281 .. [#] :func:`os.path.abspath` does not resolve symbolic links while :meth:`Path.resolve` does.