资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
//using System.Linq;
using System.Text;
using System.IO;  
using System.Windows.Forms;
using System.Diagnostics; //进程类 清空文件夹使用
using Microsoft.VisualBasic.FileIO; //回收站,需要引用.NET中的 Microsoft.VisualBasic

namespace DllTest
{
    class FileIO
    {
        public FileIO()
        { 
        }

        public string OpenFile()  //选择文件路径并返回地址
        {
            OpenFileDialog fDialog = new OpenFileDialog();
            fDialog.ShowDialog();
            string pathtemp = fDialog.FileName;
            return pathtemp;
        }

        public void OpenFolder(string spath)//显示文件夹或运行文件
        {
            System.Diagnostics.Process.Start(“explorer.exe“ spath);
        }

        public string OpenFolderPath()//选择文件

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-08-24 17:14  源码提供\
     目录           0  2019-08-24 17:14  源码提供\DllTest\
     文件        4266  2019-08-08 10:49  源码提供\DllTest\DllTest.csproj
     文件        6443  2019-08-08 10:49  源码提供\DllTest\FileIO.cs
     文件        8622  2019-08-19 22:45  源码提供\DllTest\Form1.Designer.cs
     文件        7064  2019-08-19 22:47  源码提供\DllTest\Form1.cs
     文件        6206  2019-08-19 22:45  源码提供\DllTest\Form1.resx
     文件         484  2012-12-13 09:06  源码提供\DllTest\Program.cs
     目录           0  2019-08-24 17:14  源码提供\DllTest\Properties\
     文件        1458  2012-12-13 09:06  源码提供\DllTest\Properties\AssemblyInfo.cs
     文件        2759  2012-12-13 09:06  源码提供\DllTest\Properties\Resources.Designer.cs
     文件        5612  2012-12-13 09:06  源码提供\DllTest\Properties\Resources.resx
     文件        1070  2012-12-13 09:06  源码提供\DllTest\Properties\Settings.Designer.cs
     文件         249  2012-12-13 09:06  源码提供\DllTest\Properties\Settings.settings
     文件        2243  2019-08-09 14:46  源码提供\DllTest\TimeLock.cs
     目录           0  2019-08-24 17:14  源码提供\DllTest\bin\
     目录           0  2019-08-24 17:14  源码提供\DllTest\bin\Debug\
     文件       17408  2019-08-19 22:48  源码提供\DllTest\bin\Debug\DllTest.exe
     文件       40448  2019-08-19 22:48  源码提供\DllTest\bin\Debug\DllTest.pdb
     文件       22712  2019-08-19 22:48  源码提供\DllTest\bin\Debug\DllTest.vshost.exe
     文件         490  2018-04-12 07:35  源码提供\DllTest\bin\Debug\DllTest.vshost.exe.manifest
     文件      116224  2019-08-19 22:48  源码提供\DllTest\bin\Debug\_SCREEN_CAPTURE.dll
     文件      103936  2019-08-19 22:48  源码提供\DllTest\bin\Debug\_SCREEN_CAPTURE.pdb
     目录           0  2019-08-24 17:14  源码提供\DllTest\bin\Debug\config\
     目录           0  2019-08-24 17:14  源码提供\DllTest\bin\Debug\config\临时文件\
     文件      120554  2019-08-09 21:11  源码提供\DllTest\bin\Debug\config\临时文件\临时.bmp
     文件       17447  2019-08-19 22:47  源码提供\DllTest\bin\Debug\config\临时文件\临时.jpg
     目录           0  2019-08-24 17:14  源码提供\DllTest\bin\Debug\config\配置文件\
     文件          63  2019-08-19 22:47  源码提供\DllTest\bin\Debug\config\配置文件\setting.ini
     文件        4608  2009-08-23 00:04  源码提供\DllTest\bin\Debug\libINI.dll
     目录           0  2019-08-24 17:14  源码提供\DllTest\bin\Release\
............此处省略153个文件信息

评论

共有 条评论