다음을 통해 공유


My.Computer.FileSystem.CombinePath 메서드

업데이트: 2007년 11월

두 경로를 결합하여 올바른 형식으로 된 경로를 반환합니다.

' Usage
Dim value As String = My.Computer.FileSystem.CombinePath(baseDirectory ,relativePath)
' Declaration
Public Function CombinePath( _
   ByVal baseDirectory As String, _
   ByVal relativePath As String _
) As String

매개 변수

  • baseDirectory
    필수적 요소이며 String 형식입니다. 결합할 첫 번째 경로입니다.

  • relativePath
    필수적 요소이며 String 형식입니다. 결합할 두 번째 경로입니다.

반환 값

String.

예외

다음 조건에서 예외가 발생합니다.

설명

이 메서드는 과도한 슬래시 문자를 트리밍하여 올바른 형식으로 된 경로를 만듭니다.

작업

다음 표에서는 My.Computer.FileSystem.CombinePath 메서드와 관련된 작업의 예를 보여 줍니다.

작업

참조

디렉터리 경로와 파일 이름 결합

방법: Visual Basic에서 파일 경로의 구문 분석

예제

다음 예제에서는 디렉터리 경로와 파일 이름을 결합하여 올바른 형식으로 된 경로를 만듭니다.

Dim fullPath As String
fullPath = My.Computer.FileSystem.CombinePath _
("C:\Documents and Settings\All Users\Documents\My Pictures", "picture.jpg")

다음 예제에서는 두 경로를 결합하여 올바른 형식으로 된 경로를 만듭니다.

Dim fullPath As String
fullPath = My.Computer.FileSystem.CombinePath _
("C:\Dir1\Dir2\Dir3", "..\Dir4\Dir5\File.txt")

다음 예제에서는 C:\Dir1\Dir2\Dir4\Dir5\File.txt를 반환합니다.

요구 사항

네임스페이스:Microsoft.VisualBasic.MyServices

클래스:FileSystemProxy(FileSystem에 대한 액세스 제공)

어셈블리: Visual Basic 런타임 라이브러리(Microsoft.VisualBasic.dll)

프로젝트 형식별 사용 가능 여부

프로젝트 형식

사용 가능 여부

Windows 응용 프로그램

클래스 라이브러리

콘솔 응용 프로그램

Windows 컨트롤 라이브러리

웹 컨트롤 라이브러리

Windows 서비스

웹 사이트

권한

다음과 같은 사용 권한이 필요합니다.

권한

설명

FileIOPermission

파일 및 폴더에 대한 액세스 가능성을 제어합니다. 연관된 열거형: Unrestricted

자세한 내용은 코드 액세스 보안권한 요청을 참조하십시오.

참고 항목

참조

My.Computer.FileSystem 개체

CombinePath

My.Computer.FileSystem.GetParentPath 메서드