Example #1
0
    public bool Delete(string filePath)
    {
        if (!DynamicFiles.TryRemove(filePath, out _))
        {
            return(false);
        }

        ReportChange(filePath);
        return(true);
    }