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 8867227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T16:58:53+00:00 2026-06-14T16:58:53+00:00

Can anyone explain to me how to navigate to a relative path using AppDomain.CurrentDomain.BaseDirectory

  • 0

Can anyone explain to me how to navigate to a relative path using

AppDomain.CurrentDomain.BaseDirectory

or something similar?

I want to start up a web service from inside my unit tests. i know how to get the relative path of the unit test like above or using the system reflection version but i do no know how to navigate using it.

The unit test is in a separate project in visual studio with separate folders than the service but they are both in the same solution so the path relative to one another is always the same but i do not know to use that with

Process.Start

so i can tell it to start the service.

If anyone knows please let me know, or if by chance you know another way to start a web service in TFS automated builds.

  • 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-14T16:58:55+00:00Added an answer on June 14, 2026 at 4:58 pm

    There is a object called “System.Diagnostics.ProcessStartInfo” which can help you to invoke an external process or start an application from your .NET application. Traversing to the folder can be done using some kind of Path.Combine() methods and you can pass the same path where the application lies to the “WorkingDirectory” property of ProcessStartInfo object.

    var processStartInfo = new ProcessStartInfo(string.Format("cmd /c start some service"))
                {
                    WorkingDirectory = ==PathWhereApplicationIs==,
                    WindowStyle = ProcessWindowStyle.Hidden,
                    ErrorDialog = false,
                    CreateNoWindow = true,
                    RedirectStandardOutput = true,
                    RedirectStandardError = true,
                    UseShellExecute = false,
                };
    

    In above code snippet : cmd is the command prompt, /c is the indication that we are passing some arguments, the rest can be any command you wish to execute

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

Sidebar

Related Questions

Can anyone explain me how to overpass these problems? Description Resource Path Location Type
Can anyone explain to me how to reverse an integer without using array or
Can anyone explain the pros and cons to using Data.Text and Data.ByteString.Char8 data types?
Can anyone explain what advantages there are to using a tool like MSBuild (or
Can anyone explain to me why I would want to use IList over List
Can anyone explain a parse error like this one: Method 'get_EnableCdn' in type 'System.Web.UI.ScriptManager'
Can anyone explain to me why this program: for(float i = -1; i <
Can anyone explain why here a = [] ? 1 : 2 a will
Can anyone explain to me why there is a dramatic difference in performance between
Can anyone explain to me why, in VBA code for a button on a

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.