IVsMSBuildTaskFileManager::Exists Method (String^, Int32, Int32)

 

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)

int Exists(
	String^ wszFilename,
	int fOnlyCheckOnDisk,
	[OutAttribute] int% pfExists
)

Parameters

wszFilename
Type: System::String^

[in] The name of the file.

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.

From vsshell90.idl:

HRESULT Exists(
    [in] LPCOLESTR wszFilename,
    [in] BOOL fOnlyCheckOnDisk,
    [out, retval] BOOL *pfExists
);
Return to top
Show: