C#中的文件处理

C#中的文件处理

本文介绍了C#中的文件处理 - 详细信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hello All,



我的专业核心区域是工作和处理文件。我上网了,也推了很多书。但令我惊讶的是,他们都没有向我提供有关文件处理的详细深入信息。



有人可以建议我一些提供文件处理的自上而下信息的网站吗?



谢谢在预期。

Hello All,

My professional core area is working and handling files. I have surfed the web and also referred numerous books. but to my surprise none of them provided me the detailed indepth information on file handling.

Could someone suggest me some web sites which offer top to bottom information on file handling?

Thanks in anticipation.

推荐答案

Quote:

我的专业核心领域是工作和处理文件

My professional core area is working and handling files

引用:

但令我惊讶的是,他们都没有向我提供有关文件处理的详细深入信息。

but to my surprise none of them provided me the detailed indepth information on file handling.

To my理解应该是论证的最终参考。







严肃的说, .NET 框架提供 System.IO 命名空间,您可以在 MSDN []。如果您需要较低级别的访问权限,那么您需要调用 Windows API (例如,通过 P / Invoke )。

To my understanding you should be the definitive reference on the argument.



On the serious side, the .NET framework provides the System.IO namespace, you might find the documentation at MSDN[^]. If you need a lower level access, then you migh call the Windows API (via, for instance, P/Invoke).



这篇关于C#中的文件处理 - 详细信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 20:30