Results 1 to 3 of 3
  1. #1
    baderms is offline Novice
    Windows 7 64bit Access 2016
    Join Date
    Aug 2017
    Posts
    8

    Recyle Bin

    I'm trying to move a file to the recycle bin as apposed to deleting it using the SHFileOperation API. I've found many older examples, but none of them work with win 7. Does anybody have anything. Win 7 is 64 bit, but Office 2010 is 32. This was done by chip and is basicaly the same as all the other code I've found. I'm using the recycle routine.


    Code:
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    ' modRecyle
    ' This module contains code for recycling file or folders to the Recycle Bin.
    ' The procedure Recycle will recycle any file or folder with no restrictions. The
    ' procedure RecycleSafe prevents recycling files that are marked as System files
    ' and prevents the following folders from being Recycled:
    '   This File
    '   Any root directory
    '   C:\Windows\System32
    '   C:\Windows
    '   C:\Program Files
    '   My Documents
    '   Desktop
    '   Application.Path
    '   ThisWorkbook.Path
    ' These restriction apply only to the folders. You can still delete any individual
    ' folder within these protected directories.
    '
    ' The file specification provided to either function must be a fully qualified path
    ' on the local machine. Partial paths and paths to remove machines are not allowed.
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    ' Windows API functions, constants,and types.
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    Private Declare Function SHFileOperation Lib "shell32.dll" Alias _
        "SHFileOperationA" (lpFileOp As SHFILEOPSTRUCT) As Long
    
    Private Declare Function PathIsNetworkPath Lib "shlwapi.dll" _
        Alias "PathIsNetworkPathA" ( _
        ByVal pszPath As String) As Long
    
    Private Declare Function GetSystemDirectory Lib "kernel32" _
        Alias "GetSystemDirectoryA" ( _
        ByVal lpBuffer As String, _
        ByVal nSize As Long) As Long
    
    Private Declare Function SHEmptyRecycleBin _
        Lib "shell32" Alias "SHEmptyRecycleBinA" _
        (ByVal hwnd As Long, _
         ByVal pszRootPath As String, _
         ByVal dwFlags As Long) As Long
    
    Private Declare Function PathIsDirectory Lib "shlwapi" (ByVal pszPath As String) As Long
    
    
    Private Const FO_DELETE = &H3
    Private Const FOF_ALLOWUNDO = &H40
    Private Const FOF_NOCONFIRMATION = &H10
    Private Const MAX_PATH As Long = 260
    
    Private Type SHFILEOPSTRUCT
        hwnd As Long
        wFunc As Long
        pFrom As String
        pTo As String
        fFlags As Integer
        fAnyOperationsAborted As Boolean
        hNameMappings As Long
        lpszProgressTitle As String
    End Type
    
    
    
    Public Function Recycle(FileSpec As String, Optional ErrText As String) As Boolean
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    ' Recycle
    ' This function sends FileSpec to the Recycle Bin. There
    ' are no restriction on what can be recycled. FileSpec
    ' must be a fully qualified folder or file name on the
    ' local machine.
    ' The function returns True if successful or False if
    ' an error occurs. If an error occurs, the reason for the
    ' error is placed in the ErrText varaible.
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    Dim SHFileOp As SHFILEOPSTRUCT
    Dim Res As Long
    Dim sFileSpec As String
    
    ErrText = vbNullString
    sFileSpec = FileSpec
    
    If InStr(1, FileSpec, ":", vbBinaryCompare) = 0 Then
        ''''''''''''''''''''''''''''''''''''''
        ' Not a fully qualified name. Get out.
        ''''''''''''''''''''''''''''''''''''''
        ErrText = "'" & FileSpec & "' is not a fully qualified name on the local machine"
        Recycle = False
        Exit Function
    End If
    
    If Dir(FileSpec, vbDirectory) = vbNullString Then
        ErrText = "'" & FileSpec & "' does not exist"
        Recycle = False
        Exit Function
    End If
    
    ''''''''''''''''''''''''''''''''''''
    ' Remove trailing '\' if required.
    ''''''''''''''''''''''''''''''''''''
    If Right(sFileSpec, 1) = "\" Then
        sFileSpec = Left(sFileSpec, Len(sFileSpec) - 1)
    End If
    
    
    With SHFileOp
        .wFunc = FO_DELETE
        .pFrom = sFileSpec
        .fFlags = FOF_ALLOWUNDO
        '''''''''''''''''''''''''''''''''
        ' If you want to supress the
        ' "Are you sure?" message, use
        ' the following:
        '''''''''''''''''''''''''''''''
        .fFlags = FOF_ALLOWUNDO + FOF_NOCONFIRMATION
    End With
    
    Res = SHFileOperation(SHFileOp)
    If Res = 0 Then
        Recycle = True
    Else
        Recycle = False
    End If
    
    End Function
    
    Public Function RecycleSafe(FileSpec As String, Optional ByRef ErrText As String) As Boolean
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    ' RecycleSafe
    ' This sends a file or folder to the Recycle Bin as long as it is not
    ' a protected file or folder. Protected files or folders are:
    '   ThisWorkbook
    '   ThisWorkbook.Path
    '   Any root directory
    '   C:\Windows\System32
    '   C:\Windows
    '   C:\Program Files
    '   My Documents
    '   Desktop
    '   Application.Path
    '   Any path with wildcard characters ( * or ? )
    ' The function returns True if successful or False if an error occurs. If
    ' False, the reason is put in the ErrText variable.
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    
    Dim ThisWorkbookFullName As String
    Dim ThisWorkbookPath As String
    Dim WindowsFolder As String
    Dim SystemFolder As String
    Dim ProgramFiles As String
    Dim MyDocuments As String
    Dim Desktop As String
    Dim ApplicationPath As String
    Dim Pos As Long
    Dim ShellObj As Object
    Dim sFileSpec As String
    Dim SHFileOp As SHFILEOPSTRUCT
    Dim Res As Long
    Dim FileNum As Integer
    
    sFileSpec = FileSpec
    If InStr(1, FileSpec, ":", vbBinaryCompare) = 0 Then
        RecycleSafe = False
        ErrText = "'" & FileSpec & "' is not a fully qualified name on the local machine"
        Exit Function
    End If
    
    If Dir(FileSpec, vbDirectory) = vbNullString Then
        RecycleSafe = False
        ErrText = "'" & FileSpec & "' does not exist"
        Exit Function
    End If
    
    ''''''''''''''''''''''''''''''''''''''''''
    ' Strip trailing '\' if required.
    ''''''''''''''''''''''''''''''''''''''''''
    If Right(sFileSpec, 1) = "\" Then
        sFileSpec = Left(sFileSpec, Len(sFileSpec) - 1)
    End If
        
    
    ''''''''''''''''''''''''''''''''''''''''''
    ' ThisWorkbook name and path.
    ''''''''''''''''''''''''''''''''''''''''''
    ThisWorkbookFullName = ThisWorkbook.FullName
    ThisWorkbookPath = ThisWorkbook.Path
    
    ''''''''''''''''''''''''''''''''''''''''''
    ' SystemFolder and Windows folder. Windows
    ' folder is parent of SystemFolder.
    ''''''''''''''''''''''''''''''''''''''''''
    SystemFolder = String$(MAX_PATH, vbNullChar)
    GetSystemDirectory SystemFolder, Len(SystemFolder)
    SystemFolder = Left(SystemFolder, InStr(1, SystemFolder, vbNullChar, vbBinaryCompare) - 1)
    
    Pos = InStrRev(SystemFolder, "\")
    If Pos > 0 Then
        WindowsFolder = Left(SystemFolder, Pos - 1)
    End If
    
    '''''''''''''''''''''''''''''''''''''''''''''''
    ' Program Files. Top parent of Application.Path
    '''''''''''''''''''''''''''''''''''''''''''''''
    Pos = InStr(1, Application.Path, "\", vbBinaryCompare)
    Pos = InStr(Pos + 1, Application.Path, "\", vbBinaryCompare)
    ProgramFiles = Left(Application.Path, Pos - 1)
    
    '''''''''''''''''''''''''''''''''''''''''''''''
    ' Application Path
    '''''''''''''''''''''''''''''''''''''''''''''''
    ApplicationPath = Application.Path
    
    
    '''''''''''''''''''''''''''''''''''''''''''''''
    ' UserFolders
    '''''''''''''''''''''''''''''''''''''''''''''''
    On Error Resume Next
    Err.Clear
    Set ShellObj = CreateObject("WScript.Shell")
    If ShellObj Is Nothing Then
        RecycleSafe = False
        ErrText = "Error Creating WScript.Shell. " & CStr(Err.Number) & ": " & Err.Description
        Exit Function
    End If
    MyDocuments = ShellObj.specialfolders("MyDocuments")
    Desktop = ShellObj.specialfolders("Desktop")
    Set ShellObj = Nothing
    
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''
    ' Test FileSpec to see if it is a root folder.
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''
    If (sFileSpec Like "?*:") Or (sFileSpec Like "?*:\") Then
        RecycleSafe = False
        ErrText = "File Specification is a root directory."
        Exit Function
    End If
    
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''
    ' Test file paths for prohibited paths.
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''
    If (InStr(1, sFileSpec, "*", vbBinaryCompare) > 0) Or (InStr(1, sFileSpec, "?", vbBinaryCompare) > 0) Then
        RecycleSafe = False
        ErrText = "File specification contains wildcard characters"
        Exit Function
    End If
    
    If StrComp(sFileSpec, ThisWorkbookFullName, vbTextCompare) = 0 Then
        RecycleSafe = False
        ErrText = "File specification is the same as this workbook."
        Exit Function
    End If
    
    If StrComp(sFileSpec, ThisWorkbookPath, vbTextCompare) = 0 Then
        RecycleSafe = False
        ErrText = "File specification is this workbook's path"
        Exit Function
    End If
    
    If StrComp(ThisWorkbook.FullName, sFileSpec, vbTextCompare) = 0 Then
        RecycleSafe = False
        ErrText = "File specification is this workbook."
        Exit Function
    End If
    
    If StrComp(sFileSpec, SystemFolder, vbTextCompare) = 0 Then
        RecycleSafe = False
        ErrText = "File specification is the System Folder"
        Exit Function
    End If
    
    If StrComp(sFileSpec, WindowsFolder, vbTextCompare) = 0 Then
        RecycleSafe = False
        ErrText = "File specification is the Windows folder"
        Exit Function
    End If
    
    If StrComp(sFileSpec, Application.Path, vbTextCompare) = 0 Then
        RecycleSafe = False
        ErrText = "File specification is Application Path"
        Exit Function
    End If
    
    If StrComp(sFileSpec, MyDocuments, vbTextCompare) = 0 Then
        RecycleSafe = False
        ErrText = "File specification is MyDocuments"
        Exit Function
    End If
    
    If StrComp(sFileSpec, Desktop, vbTextCompare) = 0 Then
        RecycleSafe = False
        ErrText = "File specification is Desktop"
        Exit Function
    End If
    
    If (GetAttr(sFileSpec) And vbSystem) <> 0 Then
        RecycleSafe = False
        ErrText = "File specification is a System entity"
        Exit Function
    End If
    
    ''''''''''''''''''''''''''''''''''''''''
    ' Test if File is open. Do not test
    ' if FileSpec is a directory.
    ''''''''''''''''''''''''''''''''''''''''
    
    If PathIsDirectory(sFileSpec) = 0 Then
        FileNum = FreeFile()
        On Error Resume Next
        Err.Clear
    Open sFileSpec For Input Lock Read As #FileNum
        If Err.Number <> 0 Then
            Close #FileNum
            RecycleSafe = False
            ErrText = "File in use: " & CStr(Err.Number) & "  " & Err.Description
            Exit Function
        End If
        Close #FileNum
    End If
            
    
    With SHFileOp
        .wFunc = FO_DELETE
        .pFrom = sFileSpec
        .fFlags = FOF_ALLOWUNDO
        '''''''''''''''''''''''''''''''''
        ' If you want to supress the
        ' "Are you sure?" message, use
        ' the following:
        '''''''''''''''''''''''''''''''
        .fFlags = FOF_ALLOWUNDO + FOF_NOCONFIRMATION
    End With
    
    Res = SHFileOperation(SHFileOp)
    If Res = 0 Then
        RecycleSafe = True
    Else
        RecycleSafe = False
    End If
    
    End Function
    
    Public Function EmptyRecycleBin(Optional DriveRoot As String = vbNullString) As Boolean
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    ' EmptyRecycleBin
    ' This procedure empties the Recycle Bin. If you have Windows configured
    ' to keep separate Recycle Bins for each drive, you may specify the
    ' drive in the DriveRoot parameter. Typically, this should be omitted.
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    Const SHERB_NOCONFIRMATION = &H1
    Const SHERB_NOPROGRESSUI = &H2
    Const SHERB_NOSOUND = &H4
    
    Dim Res As Long
    If DriveRoot <> vbNullString Then
        If PathIsNetworkPath(DriveRoot) <> 0 Then
            MsgBox "You can't empty the Recycle Bin of a network drive."
            Exit Function
        End If
    End If
    
    Res = SHEmptyRecycleBin(hwnd:=0&, _
                            pszRootPath:=DriveRoot, _
                            dwFlags:=SHERB_NOCONFIRMATION + _
                                     SHERB_NOPROGRESSUI + _
                                     SHERB_NOSOUND)
    If Res = 0 Then
        EmptyRecycleBin = True
    Else
        EmptyRecycleBin = False
    End If
    
    End Function

  2. #2
    Perceptus's Avatar
    Perceptus is offline Expert
    Windows 10 Access 2016
    Join Date
    Nov 2012
    Location
    Knoxville, Tennessee
    Posts
    659
    Code:
    tMyResponse = vFn_File_Recycle ("C:\test1.txt")
      MsgBox tMyResponse

    Code:
    Function vFn_File_Recycle (vFilePath)
    'Sends the file 'vFilePath' to the recycle bin without any delete confirmation. Returns 0 for no
    'error, else returns the Err.Number.
    '---------------------------------------------------------------------------------------------------
      On Error Resume Next
      'VERIFY FILE EXISTS
        Set f_ObjFSO = CreateObject("Scripting.FileSystemObject")
          If Not f_ObjFSO.FileExists(vFilePath) Then vExists = 0 Else vExists = 1
      'CONTINUE IF FILE EXISTS
        If vExists = 1 Then
        'BACKUP CURRENT USER RECYCLE BIN SETTINGS
          Set f_ObjReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv") 
            f_ObjReg.GetBinaryValue &H80000001, "Software\Microsoft\Windows\CurrentVersion\Explorer", "ShellState", vStateArr
            vBackupState = vStateArr
            vStateArr(4) = 39
            f_ObjReg.SetBinaryValue &H80000001, "Software\Microsoft\Windows\CurrentVersion\Explorer", "ShellState", vStateArr
        'INVOTE SHELL APPLICATION DELETE COMMAND
          Set f_ObjShell = CreateObject("Shell.Application").NameSpace(0).ParseName(vFilePath).InvokeVerb("delete")
        'RESTORE USER RECYCLE BIN SETTINGS
            f_ObjReg.SetBinaryValue &H80000001, "Software\Microsoft\Windows\CurrentVersion\Explorer", "ShellState", vBackupState
          End If
      'CHECK FOR ERRORS AND CLOSE THE FUNCTION
        If Err.Number <> 0 Then vFn_File_Recycle = 0 Else vFn_File_Recycle = Err.Number
        On Error Goto 0
      End Function
    Found it here https://social.technet.microsoft.com...wmi?forum=ITCG

  3. #3
    baderms is offline Novice
    Windows 7 64bit Access 2016
    Join Date
    Aug 2017
    Posts
    8
    This does work, thanks, but not what I was looking for as ISHFileOperation does a lot more.

Please reply to this thread with any new information or opinions.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums