Click or drag to resize

IVirtualFileSystemDelete Method

Delete the script.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
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);
}
See Also