If I have a SVN project set up like so:
Project
-- Subdirs
-- A
-- A1.txt
-- A2.txt
-- A3.txt
-- B
-- B1.txt
-- B2.txt
-- B3.txt
Is it possible to use externals to combine the contents of the A and B subdirectories into a single directory elsewhere, so I'd have:
Project
-- Subdirs
-- A
-- A1.txt
-- A2.txt
-- A3.txt
-- B
-- B1.txt
-- B2.txt
-- B3.txt
-- CombinedViaExternals
-- A1.txt
-- A2.txt
-- A3.txt
-- B1.txt
-- B2.txt
-- B3.txt