• 大小: 0.09M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-25
  • 语言: C#
  • 标签: 文件  操作  

资源简介

C# 文件操作入门示例

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FileStreamtest
{
    class Program
    {
        static void Main(string[] args)
        {
            //filestream 操作字节
            //streamReader 和


            //FileStream fsReader = new FileStream(@“C:\Users\xizhi\Desktop\1.txt“ FileMode.OpenOrCreate FileAccess.Read);
            //byte[] buffer = new byte[1024 * 1024 * 5];
            //int i = fsReader.Read(buffer 0 buffer.Length);
            ////i 为实际读取到的有效字节数

            ////将字节数组中每个元素按照指定的编码格式解码成字符串
            //string str = Encoding.Default.GetString(buffer 0 i);
            ////  string str = Encoding.GetEncoding(“UTF-8“).GetString(buffer 0 i);
     

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        187  2015-09-15 21:03  文件操作\FileStreamtest\App.config

     文件       6144  2015-09-16 06:21  文件操作\FileStreamtest\bin\Debug\FileStreamtest.exe

     文件        187  2015-09-15 21:03  文件操作\FileStreamtest\bin\Debug\FileStreamtest.exe.config

     文件      13824  2015-09-16 06:21  文件操作\FileStreamtest\bin\Debug\FileStreamtest.pdb

     文件      23168  2015-09-16 06:22  文件操作\FileStreamtest\bin\Debug\FileStreamtest.vshost.exe

     文件        187  2015-09-15 21:03  文件操作\FileStreamtest\bin\Debug\FileStreamtest.vshost.exe.config

     文件        490  2013-06-18 20:28  文件操作\FileStreamtest\bin\Debug\FileStreamtest.vshost.exe.manifest

     文件       2570  2015-09-15 21:24  文件操作\FileStreamtest\FileStreamtest.csproj

     文件       6598  2015-09-15 21:03  文件操作\FileStreamtest\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        538  2015-09-16 06:22  文件操作\FileStreamtest\obj\Debug\FileStreamtest.csproj.FileListAbsolute.txt

     文件       1755  2015-09-16 06:11  文件操作\FileStreamtest\obj\Debug\FileStreamtest.csprojResolveAssemblyReference.cache

     文件       6144  2015-09-16 06:21  文件操作\FileStreamtest\obj\Debug\FileStreamtest.exe

     文件      13824  2015-09-16 06:21  文件操作\FileStreamtest\obj\Debug\FileStreamtest.pdb

     文件          0  2015-09-15 21:03  文件操作\FileStreamtest\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs

     文件          0  2015-09-15 21:03  文件操作\FileStreamtest\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs

     文件          0  2015-09-15 21:03  文件操作\FileStreamtest\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs

     文件       3081  2015-09-16 06:21  文件操作\FileStreamtest\Program.cs

     文件       1440  2015-09-15 21:03  文件操作\FileStreamtest\Properties\AssemblyInfo.cs

     文件        187  2015-09-15 20:07  文件操作\Path类\App.config

     文件       5120  2015-09-15 20:28  文件操作\Path类\bin\Debug\Path类.exe

     文件        187  2015-09-15 20:07  文件操作\Path类\bin\Debug\Path类.exe.config

     文件      13824  2015-09-15 20:28  文件操作\Path类\bin\Debug\Path类.pdb

     文件      23168  2015-09-15 20:28  文件操作\Path类\bin\Debug\Path类.vshost.exe

     文件        187  2015-09-15 20:07  文件操作\Path类\bin\Debug\Path类.vshost.exe.config

     文件        490  2013-06-18 20:28  文件操作\Path类\bin\Debug\Path类.vshost.exe.manifest

     文件       6577  2015-09-15 20:07  文件操作\Path类\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        454  2015-09-15 20:28  文件操作\Path类\obj\Debug\Path类.csproj.FileListAbsolute.txt

     文件       1755  2015-09-15 20:28  文件操作\Path类\obj\Debug\Path类.csprojResolveAssemblyReference.cache

     文件       5120  2015-09-15 20:28  文件操作\Path类\obj\Debug\Path类.exe

     文件      13824  2015-09-15 20:28  文件操作\Path类\obj\Debug\Path类.pdb

............此处省略51个文件信息

评论

共有 条评论