SenseNet.ContentRepository.Storage.IndexDirectory.Deletable C# (CSharp) 메소드

Deletable() 개인적인 정적인 메소드

private static Deletable ( string path ) : bool
path string
리턴 bool
        private static bool Deletable(string path)
        {
            var time = new System.IO.DirectoryInfo(path).CreationTime;
            if (time.AddMinutes(10) < DateTime.Now)
                return true;
            return false;
        }