博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c# 文件笔记
阅读量:5251 次
发布时间:2019-06-14

本文共 1995 字,大约阅读时间需要 6 分钟。

1、文件属性操作

File类与FileInfo都能实现。静态方法与实例化方法的区别!

//use File classConsole.WriteLine(File.GetAttributes(filePath)); File.SetAttributes(filePath,FileAttributes.Hidden | FileAttributes.ReadOnly); Console.WriteLine(File.GetAttributes(filePath)); //user FilInfo class FileInfo fi = new FileInfo(filePath); Console.WriteLine(fi.Attributes.ToString()); fi.Attributes = FileAttributes.Hidden | FileAttributes.ReadOnly; //隐藏与只读 Console.WriteLine(fi.Attributes.ToString()); //只读与系统属性,删除时会提示拒绝访问 fi.Attributes = FileAttributes.Archive; Console.WriteLine(fi.Attributes.ToString());

2、文件路径

文件和文件夹的路径操作都在Path类中。另外还可以用Environment类,里面包含环境和程序的信息。

string dirPath = @"D:\TestDir"; string filePath = @"D:\TestDir\TestFile.txt"; Console.WriteLine("<<<<<<<<<<<{0}>>>>>>>>>>", "文件路径"); //获得当前路径 Console.WriteLine(Environment.CurrentDirectory); //文件或文件夹所在目录 Console.WriteLine(Path.GetDirectoryName(filePath)); //D:\TestDir Console.WriteLine(Path.GetDirectoryName(dirPath)); //D:\ //文件扩展名 Console.WriteLine(Path.GetExtension(filePath)); //.txt //文件名 Console.WriteLine(Path.GetFileName(filePath)); //TestFile.txt Console.WriteLine(Path.GetFileName(dirPath)); //TestDir Console.WriteLine(Path.GetFileNameWithoutExtension(filePath)); //TestFile //绝对路径 Console.WriteLine(Path.GetFullPath(filePath)); //D:\TestDir\TestFile.txt Console.WriteLine(Path.GetFullPath(dirPath)); //D:\TestDir //更改扩展名 Console.WriteLine(Path.ChangeExtension(filePath, ".jpg"));//D:\TestDir\TestFile.jpg //根目录 Console.WriteLine(Path.GetPathRoot(dirPath)); //D:\ //生成路径 Console.WriteLine(Path.Combine(new string[] { @"D:\", "BaseDir", "SubDir", "TestFile.txt" })); //D:\BaseDir\SubDir\TestFile.txt //生成随即文件夹名或文件名 Console.WriteLine(Path.GetRandomFileName()); //创建磁盘上唯一命名的零字节的临时文件并返回该文件的完整路径 Console.WriteLine(Path.GetTempFileName()); //返回当前系统的临时文件夹的路径 Console.WriteLine(Path.GetTempPath()); //文件名中无效字符 Console.WriteLine(Path.GetInvalidFileNameChars()); //路径中无效字符 Console.WriteLine(Path.GetInvalidPathChars());

转载于:https://www.cnblogs.com/sayshap/p/7638347.html

你可能感兴趣的文章
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
多线程实现资源共享的问题学习与总结
查看>>
Learning-Python【26】:反射及内置方法
查看>>
torch教程[1]用numpy实现三层全连接神经网络
查看>>
java实现哈弗曼树
查看>>
转:Web 测试的创作与调试技术
查看>>
python学习笔记3-列表
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
线程androidAndroid ConditionVariable的用法
查看>>
stap-prep 需要安装那些内核符号
查看>>
转载:ASP.NET Core 在 JSON 文件中配置依赖注入
查看>>
socket初识
查看>>
磁盘测试工具
查看>>
代码变量、函数命名神奇网站
查看>>
redis cli命令
查看>>
Problem B: 占点游戏
查看>>
python常用模块之sys, os, random
查看>>
HDU 2548 A strange lift
查看>>
Linux服务器在外地,如何用eclipse连接hdfs
查看>>