wjian.cs
上传用户:zpsczj
上传日期:2022-02-13
资源大小:4436k
文件大小:1k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.IO;
  5. namespace wlcs
  6. {
  7.     class wjian
  8.     {
  9.         public string wenjian()
  10.         {
  11.             string path = "..//Debug//wenjian.txt..";
  12.             string filestring = null;
  13.             if (File.Exists(path))
  14.             {
  15.                 FileStream Files = new FileStream(path, FileMode.Open);
  16.                 StreamReader reader = new StreamReader(Files, Encoding.Default);
  17.                 filestring = reader.ReadToEnd();
  18.                 reader.Close();
  19.             }
  20.             return filestring;
  21.         }
  22.         //public string pathhou(string filename, char fgf)
  23.         //{
  24.         //    string[] filepath;
  25.         //    filepath = filename.Split(fgf);
  26.         //    return filepath;
  27.         //}
  28.  
  29.     }
  30. }