ActionsLike0
Feature #4189
closedFileUtils#ln_r
Description
=begin
I wrote a method for FileUtils to do recursive hard linking. It works just like cp_r but links instead of copies.
The code can be found along with the pull request I made to ruby/ruby on Github:
http://github.com/ruby/ruby/pull/4#issuecomment-631067
It's a pretty handy method for "staging" read-only files. For example I've used it to stage test fixture files in a tmp testing location and I've used it collect together a set of files for packaging into a tarball.
=end
Files
Updated by naruse (Yui NARUSE) almost 14 years ago
- Status changed from Open to Assigned
- Assignee set to matz (Yukihiro Matsumoto)
Updated by zzak (zzak _) over 12 years ago
- File fileutils_ln_r.patch fileutils_ln_r.patch added
- Description updated (diff)
Updated by mame (Yusuke Endoh) about 7 years ago
- File fileutils_cp_lr.patch fileutils_cp_lr.patch added
Updated by mame (Yusuke Endoh) about 7 years ago
- Assignee changed from matz (Yukihiro Matsumoto) to mame (Yusuke Endoh)
ActionsLike0