IVsMSBuildTaskFileManager.Exists Method

Determines if a file exists in the RDT or on disk.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.9.0 (in Microsoft.VisualStudio.Shell.Interop.9.0.dll)

Syntax

‘선언
Function Exists ( _
    wszFilename As String, _
    fOnlyCheckOnDisk As Integer, _
    <OutAttribute> ByRef pfExists As Integer _
) As Integer
‘사용 방법
Dim instance As IVsMSBuildTaskFileManager
Dim wszFilename As String
Dim fOnlyCheckOnDisk As Integer
Dim pfExists As Integer
Dim returnValue As Integer

returnValue = instance.Exists(wszFilename, _
    fOnlyCheckOnDisk, pfExists)
int Exists(
    string wszFilename,
    int fOnlyCheckOnDisk,
    out int pfExists
)
int Exists(
    [InAttribute] String^ wszFilename, 
    [InAttribute] int fOnlyCheckOnDisk, 
    [OutAttribute] int% pfExists
)
abstract Exists : 
        wszFilename:string * 
        fOnlyCheckOnDisk:int * 
        pfExists:int byref -> int 
function Exists(
    wszFilename : String, 
    fOnlyCheckOnDisk : int, 
    pfExists : int
) : int

Parameters

  • fOnlyCheckOnDisk
    Type: System.Int32
    [in] A Boolean value. Set to true to restrict the check to files on disk.
  • pfExists
    Type: System.Int32%
    [out] A Boolean value. Set to true if the file exists.

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell90.idl:

HRESULT Exists(
    [in] LPCOLESTR wszFilename,
    [in] BOOL fOnlyCheckOnDisk,
    [out, retval] BOOL *pfExists
);

.NET Framework Security

See Also

Reference

IVsMSBuildTaskFileManager Interface

IVsMSBuildTaskFileManager Members

Microsoft.VisualStudio.Shell.Interop Namespace