• 大小: 0.35M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: C#  c  清理  程序    

资源简介

C# Winform实现的垃圾清理程序,仅实现GUI界面

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Text.Regularexpressions;

namespace ume
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        public void time()
        {
            var t = DateTime.Now.AddMilliseconds(100);
            while (DateTime.Now < t) Application.DoEvents();
        }
        public void Files()
        {
            
            string path = @“C:\Users\Administrator\AppData\Local\Temp“;
            string[]t=Directory.GetFiles(path);
            foreach (string i in t)
            {
       

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-03-08 08:42  .git\
     文件          51  2019-03-08 08:42  .git\COMMIT_EDITMSG
     文件         380  2019-03-08 08:36  .git\config
     文件          73  2019-01-19 11:58  .git\description
     文件          91  2019-03-08 08:43  .git\FETCH_HEAD
     文件          23  2019-01-19 11:58  .git\HEAD
     目录           0  2019-01-19 11:58  .git\hooks\
     文件         478  2019-01-19 11:58  .git\hooks\applypatch-msg.sample
     文件         896  2019-01-19 11:58  .git\hooks\commit-msg.sample
     文件        3327  2019-01-19 11:58  .git\hooks\fsmonitor-watchman.sample
     文件         189  2019-01-19 11:58  .git\hooks\post-update.sample
     文件         424  2019-01-19 11:58  .git\hooks\pre-applypatch.sample
     文件        1638  2019-01-19 11:58  .git\hooks\pre-commit.sample
     文件        1348  2019-01-19 11:58  .git\hooks\pre-push.sample
     文件        4898  2019-01-19 11:58  .git\hooks\pre-rebase.sample
     文件         544  2019-01-19 11:58  .git\hooks\pre-receive.sample
     文件        1492  2019-01-19 11:58  .git\hooks\prepare-commit-msg.sample
     文件        3610  2019-01-19 11:58  .git\hooks\update.sample
     文件        1477  2019-03-08 08:42  .git\index
     目录           0  2019-01-19 11:58  .git\info\
     文件         240  2019-01-19 11:58  .git\info\exclude
     目录           0  2019-01-19 11:58  .git\logs\
     文件         668  2019-03-08 08:42  .git\logs\HEAD
     目录           0  2019-01-19 11:58  .git\logs\refs\
     目录           0  2019-01-19 11:58  .git\logs\refs\heads\
     文件         668  2019-03-08 08:42  .git\logs\refs\heads\master
     目录           0  2019-01-19 11:58  .git\logs\refs\remotes\
     目录           0  2019-02-06 20:25  .git\logs\refs\remotes\origin\
     文件         182  2019-01-19 11:58  .git\logs\refs\remotes\origin\HEAD
     文件         453  2019-03-08 08:43  .git\logs\refs\remotes\origin\master
     文件         150  2019-02-11 12:05  .git\ms-persist.xml
............此处省略139个文件信息

评论

共有 条评论