I have this directory structure...
└── 01048
└── 2014
└── IN
I want to merge this directory structure...
└── 01048
└── 2014
└── AR
└── AB
To make this directory structure...
└── 01048
└── 2014
└── IN
└── AR
└── AB
I've tried shutil.move("../scr_path/01048", "../destination_path/01048")
but that results in...
└── 01048
└── 01048
└── 2014
└── AR
└── AB
└── 2014
└── IN