如何在Windows7操作系统中使用C#在C盘创建文件
如何在Windows7操作系统中使用C#在C盘创建文件
how to create a file in c drive using C# in Windows7 OS
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在Windows7操作系统中使用C#在C盘创建文件
how to create a file in c drive using C# in Windows7 OS
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
以下示例代码将在 C: 驱动器上创建一个文件夹和一个子文件夹,然后在子文件夹中创建一个具有随机文件名的新文件。最后,一些数据将被写入文件中。 (该代码有很好的注释,您应该能够通过仔细研究来弄清楚发生了什么。)
通过阅读 原始 MSDN 操作方法文章。
The following sample code will create a folder and a subfolder on your C: drive, and then create a new file in the subfolder with a random file name. Finally, some data will be written to the file. (The code is well-commented, and you should be able to figure out what's going on by studying it carefully.)
See all the gory details by reading the original MSDN How-To article.