Lines Matching +full:- +full:- +full:hard
12 'hard': 'hard linking',
24 # custom error-handling added.
74 'preserve_times' is true (the default), the last-modified and
75 last-access times are copied as well. If 'update' is true, 'src' will
79 'link' allows you to make hard links (os.link) or symbolic links
80 (os.symlink) instead of copying: set it to "hard" or "sym"; if it is
82 don't support it: 'copy_file()' doesn't check if hard or symbolic
97 # changing it (ie. it's not already a hard/soft link to src OR
115 log.debug("not copying %s (output up-to-date)", src)
125 log.info("%s %s -> %s", action, src, dir)
127 log.info("%s %s -> %s", action, src, dst)
132 # If linking (hard or symbolic), use the appropriate system call
134 elif link == 'hard':
140 # If hard linking fails, fall back on copying file
141 # (some special filesystems don't support hard linking
149 # Otherwise (non-Mac, not linking), copy the file contents and
165 # XXX I suspect this is Unix-specific -- need porting help!
174 Handles cross-device moves on Unix using 'copy_file()'. What about
181 log.info("moving %s -> %s", src, dst)