gpt4 book ai didi

vb.net - 访问回收站

转载 作者:行者123 更新时间:2023-12-02 05:25:04 25 4
gpt4 key购买 nike

我想检查回收站中的文件,就好像它是一个普通目录一样,特别是获取那里的文件列表以及每个文件到达回收站的日期。

最佳答案

这段代码对你有帮助

'Access the recycle bin folder  
Dim SH As New Shell32.Shell
Dim RecycleBin As Shell32.Folder = SH.NameSpace(Shell32.ShellSpecialFolderConstants.ssfBITBUCKET)

Dim SB As New StringBuilder
'Loop through the Recycle Bin and get each Items Name
For Each Item As Shell32.FolderItem In RecycleBin.Items
SB.AppendLine(Item.Name)
Next Item

'Display the list of filenames in a label
Label1.Text = SB.ToString

关于vb.net - 访问回收站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13208338/

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