获取 Windows 中的启动位置

发布于 2024-12-02 20:02:12 字数 132 浏览 0 评论 0原文

我编写了一个在启动时打开的小程序,但我想让用户能够通过单击按钮将其从启动时的显示中删除。 但它需要兼容 XP、Vista 和 Windows 7。 是否有一行代码可以自动获取默认启动文件夹路径,以便我可以使用按钮将其删除?

先感谢您

I've written a small program to open at startup, but I want to give the user the ability to delete it from showing on startup by clicking a button.
But it needs to be compatible on XP, Vista and Windows 7.
Is there a line of code which will get the default startup folder path automatically so I can then delete it using my button?

Thank you in advance

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

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

发布评论

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

评论(1

Saygoodbye 2024-12-09 20:02:12

您想要的是 SpecialFolder.Enumeration。并使用环境方法

类似这样的环境。 GetFolderPath(Environment.SpecialFolder.Startup)

要进行删除,您需要使用 System.IO.File.Delete(路径)

至检查那里有哪些文件尝试创建一个控制台应用程序并使用此代码。

Module Module1

Sub Main()
    Dim path As String = Environment.GetFolderPath(Environment.SpecialFolder.CommonStartup)

    For Each file In System.IO.Directory.GetFiles(path)
        Console.WriteLine(file)
    Next
    Console.ReadLine()
End Sub

终端模块

What you are wanting is the SpecialFolder.Enumeration. and use the Environment methods

Something like this Environment.GetFolderPath(Environment.SpecialFolder.Startup)

To do your deletion you need to use System.IO.File.Delete(path)

To check to see what files are out there try making a console application and use this code.

Module Module1

Sub Main()
    Dim path As String = Environment.GetFolderPath(Environment.SpecialFolder.CommonStartup)

    For Each file In System.IO.Directory.GetFiles(path)
        Console.WriteLine(file)
    Next
    Console.ReadLine()
End Sub

End Module

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