View Source GenLSP.Structures.DeleteFileOptions (gen_lsp v0.8.1)

Delete file options

Link to this section Summary

Functions

Fields

  • recursive: Delete the content recursively if a folder is denoted.
  • ignore_if_not_exists: Ignore the operation if the file doesn't exist.

Link to this section Types

@type t() :: %GenLSP.Structures.DeleteFileOptions{
  ignore_if_not_exists: boolean() | nil,
  recursive: boolean() | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.DeleteFileOptions{}

View Source (struct)

fields

Fields

  • recursive: Delete the content recursively if a folder is denoted.
  • ignore_if_not_exists: Ignore the operation if the file doesn't exist.