bloxstrap
bloxstrap copied to clipboard
bloxstrap does not have enough disk space to dowload and install roblox. please free up some space and try again
Acknowledgement of preliminary instructions
- [X] I have read the preliminary instructions, and I am certain that my problem has not already been addressed.
What problem did you encounter?
When I open Bloxstrap I get the message bloxstrap does not have enough disk space to dowload and install roblox. please free up some space and try againbut every time I remove some stuff and i try again but it always says it I don't know why it keeps happening and I want do see if some people know how to fix it
I know of one other person who's been having this issue. Haven't yet figured out what it is but I'm currently working on it. Join the Bloxstrap discord server if you haven't yet, and join this thread: https://discord.com/channels/1099468797410283540/1225864991513772032
Alr thanks
internal static long GetFreeDiskSpace(string path)
{
foreach (DriveInfo drive in DriveInfo.GetDrives())
{
if (path.StartsWith(drive.Name))
return drive.AvailableFreeSpace;
}
return -1;
}
you want path.ToUpper().StartsWith
you want path.ToUpper().StartsWith
Good point but I'm still not sure if that's what's causing it since everyone I was talking to did not change their install path from the default one
@pizzaboxer I was getting the error, this resolved it for me.
If you're referring to user dawomp in discord, his log has the path to his user dir as a lower case drive letter.
d:\Users\****\AppData\Local\Temp\scoped_dir11932_1439272033\Bloxstrap (1) final try.exe
how the fuck
Likely when he moved his user directories, he typed lower case here
I've been bitten enough by unexpected case changes that unless case is important to you, use a case insensitive comparison for all string comparisons.
Problem should now be resolved, thank you @cryolithic