目录操作-SYSTEM.IO

using System;
using System.Data;
using System.Text;
using System.IO;

namespace TestApp
{
    class Program
    {
        static void Main()
        {
            DataSet ds = new DataSet("carRepairs");
            string path = Environment.CurrentDirectory;
            path = Directory.GetParent(path).FullName;
            path = Directory.GetParent(path).FullName;
            path = Path.Combine(path, "toucai.xsd");
            ds.ReadXmlSchema(path);
            Console.WriteLine(ds.Tables.Count);
        }
    }
}

最后的运行结果为4,而path的值在本机为:C:\Users\青松\documents\visual studio 2013\Projects\TestApp\TestApp\toucai.xsd

时间: 2024-10-05 18:11:23

目录操作-SYSTEM.IO的相关文章

利用System.IO.Compression操作压缩文件

引用: using System.IO.Compression; using (FileStream zipToOpen = new FileStream(@"D:\json.zip", FileMode.Open)) { using (ZipArchive archive = new ZipArchive(zipToOpen, ZipArchiveMode.Update)) { ZipArchiveEntry readmeEntry = archive.Entries[0]; usi

完整的文件和目录操作类

using System; using System.Text; using System.IO; namespace HelloCsharp.Utilities { /// <summary> /// 文件操作类 /// </summary> public static class DirFile { #region 检测指定目录是否存在 /// <summary> /// 检测指定目录是否存在 /// </summary> /// <param n

Java基础知识系列——目录操作

Java对目录操作的许多方法与上一篇文件操作的方法很多是一样的. java.io.File file = new File( "D:\1\2\3\4"); 1.递归创建目录 file.mkdirs(); 2.删除目录 file.isDirectory(); //判读是否目录 file.list(); //返回没有完整目录的文件名 file.delete(); //删除 3.是否为空 file.list() > 0 //目录不为空 file.getPath(); //目录路径 4.

命名空间System.IO

基本介绍:System.IO 命名空间提供读写文件和数据流的类型.基本文件和目录支持的类型. 原文:http://blog.sina.com.cn/s/blog_48a45b950100erhz.html http://edu.cnzz.cn/201510/977513da.shtml 主要的类 字节流:Stream.BufferedStream.MemoryStream.UnmanagedMemoryStream.FileStream 二进制IO流:BinaryReader和BinaryWri

System.IO.Path类

System.IO.Path为路径的操作封装了很多很有的东西,利用该类提供的方法能够快速处理路径操作的问题.下面详细了解一下. 1.属性 属性太复杂了,反映什么系统平台的信息,看不懂,等以后看得懂了再补充. 2.方法 ChangeExtension  更改路径字符串的扩展名.     Combine   合并两个路径字符串.     GetDirectoryName  返回指定路径字符串的目录信息.      GetExtension 返回指定的路径字符串的扩展名.      GetFileNa

【文件操作类】史上最完整的文件和目录操作类

using System; using System.Text; using System.IO; namespace HelloCsharp.Utilities { /// <summary> /// 文件操作类 /// </summary> public static class DirFile { #region 检测指定目录是否存在 /// <summary> /// 检测指定目录是否存在 /// </summary> /// <param n

System.IO

             I/O       1.文件操作:File (1)void AppendAllText(string path, string contents) (2)bool Exists(string path) (3)string[] ReadAllLines(string path),读取文本文件到字符串数组中 (4)string ReadAllText(string path),读取文本文件到字符串中 (5)void WriteAllText(string path, st

计算机程序的思维逻辑 (59) - 文件和目录操作

前面两节我们介绍了如何通过流的方式读写文件内容,本节我们介绍文件元数据和目录的一些操作. 文件和目录操作最终是与操作系统和文件系统相关的,不同系统的实现是不一样的,但Java中的java.io.File类提供了统一的接口,底层它会通过本地方法调用操作系统和文件系统的具体实现,本节,我们就来介绍File类. File类中的操作大概可以分为三类: 文件元数据 文件操作 目录操作 在介绍这些操作之前,我们先来看下File的构造方法. 构造方法 File既可以表示文件,也可以表示目录,它的主要构造方法有

通用类库-FTPClient帮助类,实现文件上传,目录操作,下载等动作

直接上代码,这个也是我在网上找到的,自己测试修改后才公布出来的,大家可以放心使用,好的东西要分享,随时记录下来,好记性不如烂笔头,这个非常适合工作的. 1 //------------------------------------------------------------------------------------- 2 // All Rights Reserved , Copyright (C) 2016 , ZTO , Ltd . 3 //--------------------