Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7909933
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:39:47+00:00 2026-06-03T12:39:47+00:00

I am developing an application where from several screens user has to download a

  • 0

I am developing an application where from several screens user has to download a sample file(excel) to work with. What will be the preferable way to do so.

What i am doing is

Placing the file in the directory where application is executing and download the files using Application.StartupPath. This does not sounds like a very good solution. As at anytime user could edit the files or delete the files or such things.

What i want to do is

I want to add all the files in my resources and download files from the resources. I add the files but i need a little help on how to download it from resources.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T12:39:48+00:00Added an answer on June 3, 2026 at 12:39 pm

    you can use:

     class ResourceHelper
        {
               public static void MakeFileOutOfAStream(string stream, string filePath)
                {
                    using(var fs = new FileStream(filePath,FileMode.Create,FileAccess.ReadWrite))
                    {
                        CopyStream(GetStream(stream), fs);
                    }
                }
    
                static void CopyStream(Stream input, Stream output)
                {
                    byte[] buffer = new byte[32768];
                    int read;
                    while ((read = input.Read(buffer, 0, buffer.Length)) > 0)
                    {
                        output.Write(buffer, 0, read);
                    }
                }
     static Stream GetStream(string stream)
            {
                 return Assembly.GetExecutingAssembly().GetManifestResourceStream(stream));
    
            }
        }
    

    and with stream pass the complete name of you resource, that is the namespace + the resource file name ( evantual folder are to be considered as namespace part ) case sensitive. Remember to flag the file in your project as embedded resource.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing a PHP application that has to respond to request from several clients,
I'm developing an application that will be available from a website (market probably as
I am currently developing an application, which gets the input from a text file
I am developing an application which has several views. I create different xib &
I am developing an application where i need to define several constants that will
We're developing an android application that has several different tabs. We've been trying to
We are currently developing a distributed JavaEE application. Several JBoss instances will be spreaded
I am developing asp.net MVC 3 application from the standart template, with included AccountController
I`m developing an application which receives data from my GPS device like coordinates, speed
Iam developing one application.In that i take the string from array and replace .xml

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.