Added feature to upload all songs from a directory (optional recursive). Need to document the use of it as well as how to even use this CLI

This commit is contained in:
kdeng00
2019-10-23 20:48:42 -04:00
parent 27aecc7a0d
commit 81892cc52e
11 changed files with 162 additions and 29 deletions
+3 -3
View File
@@ -31,9 +31,9 @@ namespace Managers
std::array<std::string, 4> supportedActions{
"download", "upload", "retrieve", "delete"
};
std::array<std::string, 9> supportedFlags{
"-u", "-p", "-t", "-h", "-s",
"-d", "-D", "-b", "-rt"
std::array<std::string, 11> supportedFlags{
"-u", "-p", "-t", "-h", "-s", "-sd",
"-sr", "-d", "-D", "-b", "-rt"
};
std::vector<Models::Flags> flags;
char **params;