C# 中字符串的文件详细信息
我在 C# 中有一个字符串,
String file="\\mserver-80\docs\somedoc.doc"
现在如何从上面的字符串中获取 fileInfo。 我的意思是, 我想声明类似的东西
FileInfo fInfo = new FileInfo(file);
fileExtn = fInfo.Extension;
I have a string in C#
String file="\\mserver-80\docs\somedoc.doc"
Now How do I get fileInfo from the above sting.
What I mean is,
I want to declare something like
FileInfo fInfo = new FileInfo(file);
fileExtn = fInfo.Extension;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你也可以尝试
You can also try
在 C# 中,字符串应该是
您还可以使用 @ 字符转义字符串,这是一个更好的选择:
除此之外,代码应该可以工作。
In C# the string should be
You can also escacpe the string using the @ character, which is a better alternative:
other than that the code should work.
使用
FileInfo类
。
只需添加
但是,请注意
\
必须转义为\\
。相反,您应该使用
@""
字符串< /a>,像这样:That code will work fine, using the
FileInfo
class.Simply add
However, note that the
\
must be escaped as\\
.Instead, you should use an
@""
string, like this: