Home | History | Annotate | Download | only in files

Lines Matching defs:symlink

201 class Symlink(Action):
203 super(Symlink, self).__init__(dangerous=False)
228 os.symlink(source_path, os.path.abspath(self._link_path))
237 # Handles symlink creation on the different platforms.
239 def symlink(source_path, link_path):
243 raise OSError('Failed to create symlink to %s. Notice that only NTFS '
246 os.symlink = symlink
304 now replaced with a symlink into the full Chromium checkout.
354 This will be a symlink on POSIX platforms. On Windows this requires
412 actions.append(Symlink(source_path, link_path))