zoukankan      html  css  js  c++  java
  • 文件目录学习

    一、文件目录相关

        1、GetFiles:取目录下的文件

             string[] filenames = Directory.GetFiles(budgetpath);

        2、Path.GetExtension(filename):

             返回值:文件的扩展名,有“.”
           
    二、文本文件操作

         1、File.ReadAllLines:将文本所有行读到一个字符串数组中,例如:

              string[] pbsFiles = File.ReadAllLines(sPBSContentFile, Encoding.GetEncoding("gb2312"));

          2、System.IO.Path.GetExtension(tbFilePath.Text); 文件扩展名, 返回值:".txt" 带点 

          3、System.IO.Path.GetFileNameWithoutExtension(文件名):返回值:仅仅包含文件名,不包含文件扩展名和文件路径名

          4、Path.GetDirectoryName(含路劲文件名):返回值:文件的路劲

       

  • 相关阅读:
    快排
    Single Number II
    简单工厂和工厂方法
    Implement strStr()
    Linked List Cycle II
    Linked List Cycle
    适配器模式
    Struts2的ActionContext
    javaScript学习随笔
    Tomcat 基本配置(转)
  • 原文地址:https://www.cnblogs.com/SouthAurora/p/2207321.html
Copyright © 2011-2022 走看看