RecycleOption Enum

Definition

Specifies whether a file should be deleted permanently or placed in the Recycle Bin.

public enum class RecycleOption
public enum RecycleOption
type RecycleOption = 
Public Enum RecycleOption
Inheritance
RecycleOption

Fields

DeletePermanently 2

Delete the file or directory permanently. Default.

SendToRecycleBin 3

Send the file or directory to the Recycle Bin.

Remarks

This enumeration is used with the DeleteDirectory and DeleteFile methods.

To protect users against accidental deletion of important files, the Recycle Bin collects deleted files and provides a method for restoring those files. You must explicitly delete the files from the Recycle Bin to make the deletion permanent. Until the files are deleted from the Recycle Bin, the disk space occupied by those files is unavailable for other uses.

Sometimes it is beneficial to bypass the Recycle Bin, especially if you are deleting a large number of files (or a smaller number of very large files) that you are sure are no longer needed, and you want to reclaim the disk space.

Applies to

See also