How to 7zip multiple folders in to one 7z package?

Solution 1:

7za a Test a b c

will create Test.7z with the three folders and all sub-folders and files stored using relative paths.

If you want to store the folders beginning at the second level, you can use:

7za a Test a\1 b\1 c\1