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

static private ArchiveAndDelete ( string filename ) : bool
filename string
리턴 bool
예제 #1
0
        public static bool DeleteOrArchive(ISpyControl ctrl, string filePath, bool archive)
        {
            if (!archive || filePath.EndsWith(".jpg"))
            {
                return(Delete(filePath));
            }

            Helper.ArchiveAndDelete(ctrl, filePath);

            return(true);
        }