WinForm程序中怎么在指定路径创建文件

WinForm程序中怎么在指定路径创建文件,第1张

1、通过Path类的Combine方法可以合并路径

string activeDir = @"C:\myDir"

string newPath = System.IO.Path.Combine(activeDir, "mySubDirOne")

2、目录的创建。

创建目录时如果目录已存在,则不会重新创建目录,且不会报错。创建目录时会自动创建路径中各级不存在的目录。

(1)通过Directory类的CreateDirectory方法创建。

string activeDir = @"C:\myDir"

string newPath = System.IO.Path.Combine(activeDir, "mySubDirOne")

System.IO.Directory.CreateDirectory(newPath)

(1)通过DirectoryInfo的对象创建。

System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(@"C:\myDirTwo\mySubDirThree")

di.Create()

参考下面的代码:

1.取得和设置当前目录(即该进程从中启动的目录)的完全限定路径。

string str = System.Environment.CurrentDirectory

结果: C:\xxx\xxx

 

2.取得启动了应用程序的可执行文件的路径,不包括可执行文件的名称。

string str = System.Windows.Forms.Application.StartupPath

结果: C:\xxx\xxx

 

3.取得应用程序的当前工作目录。

string str = System.IO.Directory.GetCurrentDirectory()

结果: C:\xxx\xxx

 

4.取得当前 Thread 的当前应用程序域的基目录,它由程序集冲突解决程序用来探测程序集。

string str = System.AppDomain.CurrentDomain.BaseDirectory

结果: C:\xxx\xxx\

 

5.取得和设置包含该应用程序的目录的名称。

string str = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase

结果: C:\xxx\xxx\

 

6.取得启动了应用程序的可执行文件的路径,包括可执行文件的名称。

string str = System.Windows.Forms.Application.ExecutablePath

结果: C:\xxx\xxx\xxx.exe

 

7.取得当前执行的exe的文件名。

string str = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName

结果: C:\xxx\xxx\xxx.exe

 

8.取得当前进程的完整路径,包含文件名。

string str = this.GetType().Assembly.Location

结果: C:\xxx\xxx\xxx.exe


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11555049.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存