Hello friends,
You are trying to free up a few GBs on drive C? You tried to clean WinSxS folder, you have tried Disk cleanup util and even the Dism.exe but still need a few GBs of free space? ;)
You got to the right place - your problem is Dropbox.
- Go to the Program Files (x86) > Dropbox folder
- Delete all Client XX.XX folders except the latest one
You will be amaized that it will free up to 2-4 GB of space! :)
Thank you and see you ;)

1vqHSTrq1GEoEF7QsL8dhmJfRMDVxhv2y
Hello friends,
If you are here then you in need of the same as me - split string by comma that is not inside of any brackets or parentheses.
So to do that you need the following piece of code (C# code):
string oval = "Home, Edit, HDMI (4K, ARC), Test, Double 2.0 x1, Multi (F1, (f2-f5, f6, 58), FF, o2), ARG";
string roval = "";
int isOpen = 0;
for (int i = 0; i < oval.Length; i++)
{
if (isOpen <= 0 && oval[i] == ',')
{
roval += ",,";
}
else if (isOpen > 0 && (oval[i] == ')' || oval[i] == ']' || oval[i] == '}'))
{
isOpen--;
roval += oval[i];
}
else if ((oval[i] == '(' || oval[i] == '[' || oval[i] == '{'))
{
isOpen++;
roval += oval[i];
}
else
{
roval += oval[i];
}
}
string[] split = roval.Split(",,", StringSplitOptions.RemoveEmptyEntries);
String you get to split looks like this:
Home,, Edit,, HDMI (4K, ARC),, Test,, Double 2.0 x1,, Multi (F1, (f2-f5, f6, 58), FF, o2),, ARG
so you need just split it by double comma now.
This is fast, short and clear code that can be easily translated into any other language
Thank you and see you :)

1vqHSTrq1GEoEF7QsL8dhmJfRMDVxhv2y