Skip to main content

Delete File

Delete Local

- name: Delete uploaded file at ansible centralize data location
  file:
    path: "/tmp/directory/filename.extension"
    state: absent
  delegate_to: localhost

Delete Remote

- name: Delete uploaded file at target machine
  win_file:
    path: "C:\temp\abc.zip"
    state: absent