Example #1
0
        public void Delete(string pool, string id)
        {
            PoolFile poolFile = Find(id);

            //
            CreateInfoAccessor().Delete(pool, id);

            //
            if (poolFile.Exists)
            {
                File.Delete(poolFile.GetPhysicalPath());
            }
        }