Click or drag to resize

VirtualFileSystemDelete Method

Delete the script.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public void Delete(
	string scriptPath
)

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);
}
See Also