(64)C#里使用GetCurrentDirectory()Exists()CreateDirectory() Environment.CurrentDirectory
Posted caimouse
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(64)C#里使用GetCurrentDirectory()Exists()CreateDirectory() Environment.CurrentDirectory相关的知识,希望对你有一定的参考价值。
(64)C#里使用GetCurrentDirectory()、Exists()、CreateDirectory()、 Environment.CurrentDirectory
在C#开发里,经常需要操作文件相关的内容,比如获取当前目录,这时候需要使用函数GetCurrentDirectory(),它的定义如下:
public static string GetCurrentDirectory ();
获取应用程序的当前工作目录。
返回:String类型;一个字符串,该字符串包含当前工作目录的绝对路径且不以反斜杠 (\\) 结尾。
如果一个目录是否存在,就需要使用函数Exists()来判断,当函数认为目录存在,就返回true,当访问出错,或者不存在就返回false。这个当函数定义如下:
以上是关于(64)C#里使用GetCurrentDirectory()Exists()CreateDirectory() Environment.CurrentDirectory的主要内容,如果未能解决你的问题,请参考以下文章
(64)C#里使用GetCurrentDirectory()Exists()CreateDirectory() Environment.CurrentDirectory
c语言里的LPARAM类型对应的c#里是啥类型呢? LPARAM到底是怎么样的一个类型啊?