Método IDTSApplication100.FolderExistsOnDtsServer
Essa API oferece suporte à infraestrutura do SQL Server 2012 e não se destina a ser usada diretamente no seu código.
Returns a Boolean that indicates whether the specified folder already exists on the file system.
Namespace: Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly: Microsoft.SqlServer.DTSRuntimeWrap (em Microsoft.SqlServer.DTSRuntimeWrap.dll)
Sintaxe
'Declaração
Function FolderExistsOnDtsServer ( _
bstrFolderName As String, _
bstrServerName As String _
) As Boolean
'Uso
Dim instance As IDTSApplication100
Dim bstrFolderName As String
Dim bstrServerName As String
Dim returnValue As Boolean
returnValue = instance.FolderExistsOnDtsServer(bstrFolderName, _
bstrServerName)
bool FolderExistsOnDtsServer(
string bstrFolderName,
string bstrServerName
)
bool FolderExistsOnDtsServer(
[InAttribute] String^ bstrFolderName,
[InAttribute] String^ bstrServerName
)
abstract FolderExistsOnDtsServer :
bstrFolderName:string *
bstrServerName:string -> bool
function FolderExistsOnDtsServer(
bstrFolderName : String,
bstrServerName : String
) : boolean
Parâmetros
- bstrFolderName
Tipo: System.String
The name of the folder you are looking for. For example, to see if a folder name myFolder exists under the File System folder, use the escaped string, @"\\File System\\myFolder".
- bstrServerName
Tipo: System.String
The name of the server to search for the folder.
Valor de retorno
Tipo: System.Boolean
true if the folder specified exists on the server; false if the folder does not exist.