> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# delfile

> Workspace icindeki mevcut bir regular file degerini siler.

<div className="real-function-page">
  ```lua theme={null}
  delfile(path: string)
  ```

  ## Argümanlar

  <ParamField path={"path"} type={"string"} required>
    Separator normalization ve workspace-boundary checks sonrasinda workspace icinde cozumlenen path. Hedef mevcut olmali ve regular file olmalidir; folders kabul edilmez.
  </ParamField>

  ## Örnek

  Mevcut bir workspace file degerini silin.

  ```lua theme={null}
  local path = "examples/temporary.txt"
  writefile(path, "temporary")

  delfile(path)
  print(isfile(path))
  ```
</div>
