다음을 통해 공유


VirtualDirectory.PhysicalPath 속성

정의

사용할 가상 디렉터리의 실제 위치를 가져오거나 설정합니다.

public:
 property System::String ^ PhysicalPath { System::String ^ get(); void set(System::String ^ value); };
public string PhysicalPath { get; set; }
member this.PhysicalPath : string with get, set
Public Property PhysicalPath As String

속성 값

가상 디렉터리가 매핑되는 실제 위치 경로입니다.

예제

다음 예제에서는 설정 하는 PhysicalPath 방법에 설명 합니다 가상 디렉터리의 속성입니다.


using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Web.Administration;
using Microsoft.Web.Management;
using Microsoft.Web.Management.Client;

namespace AdministrationSnippets
{
    public class AdministrationVirtualDirectory
    {
        // Creates a new virtual directory, retrieves the configuration,
        // then changes the Path and PhysicalPath
        public void SetPathAndPhysicalPath()
        {
            // Create a new application and update the configuration system
            ServerManager manager = new ServerManager();
            Site defaultSite = manager.Sites["Default Web Site"];
            Application reports =
                defaultSite.Applications.Add("/reports", @"C:\inetpub\reports");
            manager.CommitChanges();
            
            
            // Read the data back from the updated configuration system, 
            // then modify the Path and Physical Path.
            reports = manager.Sites["Default Web Site"].Applications["/reports"];
            VirtualDirectory reportDir = reports.VirtualDirectories[0];
            reportDir.Path = "/private_reports";
            reportDir.PhysicalPath = @"C:\inetpub\secure\reports";
            manager.CommitChanges();
        }
    }
}

설명

이 경로는 UNC 경로일 수 있습니다. 그러나 웹 서버에서 로컬 관리자 그룹의 구성원이 아닌 사용자에게 이 디렉터리의 관리를 위임하는 경우 자격 증명이 필요합니다.

적용 대상