|
EmbeddedResourceProviderFileExists Method
|
Gets a value that indicates whether a file exists in the virtual file system.
Namespace: GSF.Web.EmbeddedAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.205-beta
Syntax public override bool FileExists(
string virtualPath
)
Public Overrides Function FileExists (
virtualPath As String
) As Boolean
public:
virtual bool FileExists(
String^ virtualPath
) override
abstract FileExists :
virtualPath : string -> bool
override FileExists :
virtualPath : string -> bool
function FileExists(virtualPath);
View SourceParameters
- virtualPath String
- The path to the virtual file.
Return Value
Booleantrue if the file exists in the virtual file system; otherwise, false.
Remarks
Any virtual path that begins with an @ symbol is assumed to be an embedded resource where
the path represents the namespace hierarchy in either slash or dot notation.
See Also