Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter Web-stable reducing my hard drive space everytime i run the web app?

I recently upgraded my flutter version from beta to flutter stable 2.2.2 However, everytime I run the flutter-web app that am creating, the size of my hard drive keeps reducing!!What could be the cause of this? Is

like image 363
Emmon Avatar asked Nov 06 '22 01:11

Emmon


1 Answers

It is because each time you debug or run a flutter code a flutter.tools.**** folder will be created in your temp folder which will be automatically created but not deleted by flutter you will have to delete them in order to save your disk space. This is what i did and nearly reduced 15.4 gb.

If you are using a windows machine then open Run software and run the command %TEMP% it will take you to the folder.

If you are using mac sorry i am not used to it and dosent know where it will be stored

but despite of the machine whenever you run the flutter program it will create a file and that is what eats up your space.

Hope this helps

like image 89
Yagav Avatar answered Nov 15 '22 06:11

Yagav