gpt4 book ai didi

VB.NET |获取当前用户配置文件文件夹

转载 作者:行者123 更新时间:2023-12-01 22:58:22 25 4
gpt4 key购买 nike

我如何使用 'path'转到用户的当前个人资料?

例如,我有这个代码:

        Dim fso, fldr
fso = CreateObject("Scripting.FilesystemObject")

fldr = fso.GetFolder("C:\Documents and Settings\%UserProfile%\Local Settings\TEST")

'delete subfolders
For Each subf In fldr.SubFolders

subf.Delete(True)

Next

'delete subfiles
For Each fsofile In fldr.Files

fsofile.Delete(True)

Next

我试过这种方式,路径未知。

我该如何制作 C:\Documents and Settings\???\Local Settings\TEST转到当前用户的文件夹?

最佳答案

使用“userprofile”环境变量...

MsgBox(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile))

关于VB.NET |获取当前用户配置文件文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18230411/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com