directoryutils.cs

来自「Microsoft Mobile Development Handbook的代码」· CS 代码 · 共 63 行

CS
63
字号
//===============================================================================
// Microsoft patterns & practices
// Mobile Client Software Factory - July 2006
//===============================================================================
// Copyright  Microsoft Corporation.  All rights reserved.
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
// FITNESS FOR A PARTICULAR PURPOSE.
//===============================================================================
// The example companies, organizations, products, domain names,
// e-mail addresses, logos, people, places, and events depicted
// herein are fictitious.  No association with any real company,
// organization, product, domain name, email address, logo, person,
// places, or events is intended or should be inferred.
//===============================================================================

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Reflection;

namespace Microsoft.Practices.Mobile.Configuration
{
	/// <summary>
	///	<para>
	///		The Compact Framework doesn't provide this class, which is in System.Configuration
	/// </para>
	/// </summary>
	public class DirectoryUtils
	{
		private DirectoryUtils()
		{
		}

		/// <summary>
		///		Because the Windows Mobile doesn't have a current directory, this little helper
		///		method provides a way to get to the directory for this assembly.
		/// </summary>
		public static string BaseDirectory
		{
			get
			{
				string name = Assembly.GetExecutingAssembly().GetName().CodeBase;
				name = Path.GetDirectoryName(name);

				//
				// Support for unit testing on the desktop. CodeBase returns a path with "file:\" at the start
				// under Windows, but not under Windows CE. The code that uses this property expects
				// the path without the file:\ at the start.
				//
				if (Environment.OSVersion.Platform != PlatformID.WinCE)
				{
					if (name.StartsWith(@"file:\"))
						name = name.Remove(0, 6);
				}
				return name;
			}
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?