VirtualFileSystemDelete Method |
Delete the script.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxpublic void Delete(
string scriptPath
)
Public Sub Delete (
scriptPath As String
)
public:
virtual void Delete(
String^ scriptPath
) sealed
Parameters
- scriptPath String
-
The path of the script which is always in canonical form as returned by the Combine method.
Implements
IVirtualFileSystemDelete(String)
Remarks
Implement this method to delete the script indicated.
Example
IVirtualFileSystem implementation which uses the normal file system.
void Delete(string scriptPath)
{
File.Delete(scriptPath);
}
Public Sub Delete(ByVal scriptPath As String)
File.Delete(scriptPath)
End Function
See Also