从 System.IO.Stream 对象中找出文件扩展名

发布于 2024-11-28 14:40:37 字数 103 浏览 0 评论 0原文

我有一个方法返回从文件初始化的 System.IO.Stream 对象。我想断言流对象是为具有正确文件扩展名的文件创建的。

我有什么办法可以做到这一点吗?

谢谢

I have a method which returns a System.IO.Stream object initialized from a file. I want to assert that the stream object was created for a file with the correct file extension.

Is there any way I can do this?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一生独一 2024-12-05 14:40:37

由于您的 Stream 对象是从文件(希望是从文件名)初始化的,因此它应该是一个 文件流。因此,您可以使用其 Name 属性来获取底层文件的名称:

FileStream fileStream = yourStream as FileStream;
if (fileStream != null) {
    string extensionWithDot = Path.GetExtension(fileStream.Name);
    // Now test the file extension.
}

Since your Stream object was initialized from a file (hopefully, from a file name), it should be a FileStream. Therefore, you can use its Name property to obtain the name of the underlying file:

FileStream fileStream = yourStream as FileStream;
if (fileStream != null) {
    string extensionWithDot = Path.GetExtension(fileStream.Name);
    // Now test the file extension.
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文