You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Console.WriteLine("This takes a class list and creates folders in Box. Each folder is the netid of the student and each of these folders contains 'Assignments' and 'Submissions'");
Console.WriteLine("Parameter 2: the box folder name");
Console.WriteLine("Parameter 3: the file name of the class list");
Console.WriteLine("Parameter 4: the file name you want the end user to see");
return false;
}
return true;
}
public static void Intro()
{
Console.WriteLine("This has three main settings: 'init', 'lock', 'unlock'. These are the first parameter of the command line. You can enter this information ('BoxFileLoader.exe init') to see more details on how to use each function.");
}
public static bool Lock(string[] args)
{
if (args.Length != 2)
{
Console.WriteLine("This locks all the submissions folder");
Console.WriteLine("Parameter 2: the box folder name");
return false;
}
return true;
}
public static bool Unlock(string[] args)
{
if (args.Length != 2)
{
Console.WriteLine("This unlocks all the submissions folder");
Console.WriteLine("Parameter 2: the box folder name");