Trying to use FileStream to write a file

Discussion in 'ASP.NET / ASP.NET Core' started by raelyard, Nov 10, 2005.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. When I try to use a filestream to write a file to a subdirectory of my application, I encounter the following unecpexted exception:

    System.IO.IOException: There is not enough space on the disk.



    It is obviously not that there is not enough disk space, as I can FTP the same file to the directory. Is there any reason I would be seeing this?

    Thanks for any help.
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    when you create file in your web application, the quota goes toward your aspnet or iusr.

    you can adjust these quota in the control panel.

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
  3. Thanks very much Bruce. That answers my question. My problem is solved.

    I wasn't aware that there were user-based disk quotas. I thought it was just based on the entire account.

    Thanks again.
     
  4. Bruce

    Bruce DiscountASP.NET Staff

    yeah.. we introduced this features couple months back to give users more flexibility on assigning their own quota.

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page