bloxstrap icon indicating copy to clipboard operation
bloxstrap copied to clipboard

bloxstrap does not have enough disk space to dowload and install roblox. please free up some space and try again

Open DiegoGaming1 opened this issue 1 year ago • 2 comments
trafficstars

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

DiegoGaming1 avatar Apr 19 '24 19:04 DiegoGaming1

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

pizzaboxer avatar Apr 19 '24 21:04 pizzaboxer

Alr thanks

DiegoGaming1 avatar Apr 20 '24 03:04 DiegoGaming1

        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

cryolithic avatar Jun 26 '24 20:06 cryolithic

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 avatar Jun 28 '24 12:06 pizzaboxer

@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

cryolithic avatar Jul 01 '24 08:07 cryolithic

how the fuck

pizzaboxer avatar Jul 02 '24 07:07 pizzaboxer

Screenshot 2024-07-02 145150

Likely when he moved his user directories, he typed lower case here

cryolithic avatar Jul 02 '24 21:07 cryolithic

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.

cryolithic avatar Jul 02 '24 21:07 cryolithic

Problem should now be resolved, thank you @cryolithic

pizzaboxer avatar Jul 09 '24 18:07 pizzaboxer