Business.FileOperationAPIWrapper.Send C# (CSharp) Method

Send() public static method

Send file to recycle bin. Display dialog, display warning if files are too big to fit (FOF_WANTNUKEWARNING)
public static Send ( string path ) : bool
path string Location of directory or file to recycle
return bool
        public static bool Send(string path) {
            return Send(path, FileOperationFlags.FOF_NOCONFIRMATION | FileOperationFlags.FOF_WANTNUKEWARNING);
        }

Same methods

FileOperationAPIWrapper::Send ( string path, FileOperationFlags flags ) : bool