[This is preliminary documentation and is subject to change.]

Returns true if the file is available and is not locked. This method tries 100 iterations and comes out if the file could not be found.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static bool IsFileAvailable(
	string filePath
)
Visual Basic (Declaration)
Public Shared Function IsFileAvailable ( _
	filePath As String _
) As Boolean
Visual C++
public:
static bool IsFileAvailable(
	String^ filePath
)

Parameters

filePath
Type: System..::.String
The path of the file that needs to be tested.

Return Value

true if the file is available (not locked) false otherwise

See Also