Looking at the Fileutils.cp_r
documentation, it seems to be using cp -r
in a shell. This command will ignore subdirectories that are empty (at least on my OS X 10.9 machine).
Can anyone suggest a solution that would allow me to include the empty subdirectories?
EDIT: cp -r
in my shell does in fact copy the empty subdirectories, so now I am even more confused...