覆盖选项文件给用户?

发布于 2024-11-02 19:29:21 字数 545 浏览 1 评论 0原文

我需要在目录或路径中创建一个二进制文件,如果该文件存在,应用程序应询问用户是否要覆盖它。我有这段代码来写入文件,那么,如何验证文件是否存在并显示控制台消息?

using (FileStream fileStream = new FileStream(binaryFilePath, FileMode.Create)) // destiny file directory.
            {
                using (BinaryWriter binaryWriter = new BinaryWriter(fileStream))
                {
                    for (int i = 0; i < frameCodes.Count; i++)
                    {
                        binaryWriter.Write(frameCodes[i]);
                    }
                }
            }

谢谢..

I need to create a binary file in a directory or path, if the file exists, the application should ask to the user if want to overwrite it. I have this code to write the file, so, how can verify if the file exist and show to console the message?

using (FileStream fileStream = new FileStream(binaryFilePath, FileMode.Create)) // destiny file directory.
            {
                using (BinaryWriter binaryWriter = new BinaryWriter(fileStream))
                {
                    for (int i = 0; i < frameCodes.Count; i++)
                    {
                        binaryWriter.Write(frameCodes[i]);
                    }
                }
            }

thanks..

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

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

发布评论

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

评论(2

一直在等你来 2024-11-09 19:29:22

File.Exists(binaryFilePath) 应该对您有帮助。

File.Exists(binaryFilePath) should help you.

临风闻羌笛 2024-11-09 19:29:22

您可以尝试这样的操作:

if(File.Exists(binaryFilePath) && PromptUser())
{
...
}

其中 PromptUser() 将询问用户是否要覆盖该文件

You could try something like this:

if(File.Exists(binaryFilePath) && PromptUser())
{
...
}

Where PromptUser() will ask the user if they want to override the file

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文