Reputation: 1182
I have this web app on Windows Azure on "Free" scale. On management portal, I see web app is using 650MB of 1GB my file storage limit. I've checked all the files over FTP, including Log Files and those extra packages that Azure installs. There is nothing there to make it reach that level.. Max 200MB maybe... Any idea what can be the reason and how can I fix this?
Upvotes: 0
Views: 802
Reputation: 24148
@Noldor, Please refer to the article File structure on azure to know the sets of files & dirs on Azure WebApp, and check the directories which include the possible increasing files, such as LogFiles
, site/repository
, site/deployments
(if using deployment slots) and your directory for uploading files.
Upvotes: 1
Reputation: 721
If you are using git or some version control mechanism, there will be some history files hidden in your project folder. Check the folder size of /YOUR_PROJECT/.git/ for git.
Upvotes: 0