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

  • Home
  • SEARCH
  • 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 6247567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T12:54:01+00:00 2026-05-24T12:54:01+00:00

I have seen several developers perform: string fileStore = Server.MapPath(@~\someDirectory); File.Create(fileStore + someFileName.xxx); I

  • 0

I have seen several developers perform:

string fileStore = Server.MapPath(@"~\someDirectory");
File.Create(fileStore + "someFileName.xxx");

I find that this makes unit testing difficult. Since I test with MSTest, there’s no HTTP context, so this code just flat out fails.

Instead, I store my file paths in web.config.

string fileStore = ConfigurationManager.AppSettings["fileStore"];

This works with unit tests. Why do developers use Server.MapPath() in this way? Are there some benefits I’m unaware of?

  • 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-05-24T12:54:03+00:00Added an answer on May 24, 2026 at 12:54 pm

    I think both ways are perfectly valid.

    Server.MapPath is more easily readable but is harder to test.
    Keep in mind, though, that unit testing wasn’t supported by ASP .NET at all (before the MVC thing).

    Personally, I tend to create a directory service that gives me the paths:

    public interface IDirectoryService {
        string MapPath(string relative);
    }
    
    public DirectoryService : IDirectoryService {
        public string MapPath(string relative)
        {
            return Server.MapPath(relative);
        }
    }
    

    When I unit-test, I just mock it to returns something meaningful for the tests.

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

Sidebar

Related Questions

I have seen several programmers use & and + for string manipulation. Such as:
I have seen several examples on how to find children, etc but for some
I have seen several variations. Suppose I wish my cookie to expire after one
I have seen several questions with people asking about the same problem but none
I have seen several places in stackoverflow where folks have elegantly and easily turned
I have seen several sites where these social share buttons looks perfectly horizontal aligned.
I have seen several apps that make use of a UISplitViewController inside a tab.
I have seen several posts on how to dismiss a dialog by clicking on
I have seen several posts similar to this but none with a strait forward
Where is the TickCount() call? I have seen several threads on the web that

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.