IVirtualFileSystemDelete Method |
Delete the script.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxvoid Delete(
string scriptPath
)
Sub Delete (
scriptPath As String
)
void Delete(
String^ scriptPath
)
Parameters
- scriptPath String
-
The path of the script which is always in canonical form as returned by the Combine method.
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