摘要:
Directory类主要用于遍历文件夹和文件。 调用EnumerateDirectories()等以Enumerate开头的方法,则直接返回,在使用的时候才枚举,提高了效率。 结果: EnumerateFileSystemEntries D:\FileTest\dir1D:\FileTest\Fil 阅读全文
摘要:
Directory类主要用于遍历文件夹和文件。 调用EnumerateDirectories()等以Enumerate开头的方法,则直接返回,在使用的时候才枚举,提高了效率。 结果: EnumerateFileSystemEntries D:\FileTest\dir1D:\FileTest\Fil 阅读全文
摘要:
总结: ①Path类是static类型 ②常用方法 ③注意事项 a.使用前需要对参数进行判空,其次追加try catch来捕获Exception。 b.GetFullPath()可以将多个 / \ 合并为1个,使之格式化为合法的路径。末尾的\会保留。 c.GetDirectoryName()结果末尾 阅读全文
摘要:
目标:学会读取配置文件中的AppSettings ①在App.config中追加AppSettings。AppSettings是键值对,注意定义位置在<configuration></configuration>中 ②在References中追加System.Configuration ③取值 St 阅读全文
摘要:
目标:①学会定义Attribute。②使用Attribute③利用Attribute实现简单功能。 前提:会用反射。 目标①:定义Attribute Attribute是类,需要继承自Attribute,类名通常以Attribute结尾。如下,定义了ShowNameAttribute类。 目标②:使 阅读全文
|