Application.FolderExistsOnDtsServer(String, String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 폴더가 파일 시스템에 이미 있는지 여부를 나타내는 부울 값을 반환합니다.
public:
bool FolderExistsOnDtsServer(System::String ^ sFolderName, System::String ^ sServerName);
public bool FolderExistsOnDtsServer (string sFolderName, string sServerName);
member this.FolderExistsOnDtsServer : string * string -> bool
Public Function FolderExistsOnDtsServer (sFolderName As String, sServerName As String) As Boolean
매개 변수
- sFolderName
- String
찾으려는 폴더의 이름입니다. 예를 들어 파일 시스템 폴더 아래에 폴더 이름 "myFolder"가 있는지 확인하려면 이스케이프된 문자열 @"\File System\myFolder"을 사용합니다.
- sServerName
- String
패키지를 검색할 서버의 이름입니다.
반환
지정된 폴더가 서버에 있으면 true입니다. 폴더가 없으면 false입니다.
예제
The following code example queries the File System to determine whether a folder that was created previously, named myFolder
, exists.
class PackageTest
{
static void Main(string[] args)
{
Application app = new Application();
Package p = app.LoadPackage(pkg, null);
String folderName = @"\File System\myFolder";
String serverName = "yourserver";
Boolean folderExists = app.FolderExistsOnDtsServer(folderName, serverName);
Console.WriteLine("Folder exists? " + folderExists);
}
}
Class PackageTest
Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim p As Package = app.LoadPackage(pkg,Nothing)
Dim folderName As String = "\File System\myFolder"
Dim serverName As String = "yourserver"
Dim folderExists As Boolean = app.FolderExistsOnDtsServer(folderName,serverName)
Console.WriteLine("Folder exists? " + folderExists)
End Sub
End Class
샘플 출력:
Folder exists? True