You are reading an unmaintained version of the Ansible documentation. Unmaintained Ansible versions can contain unfixed security vulnerabilities (CVE). Please upgrade to a maintained version. See the latest Ansible documentation.
win_file - Creates, touches or removes files or directories.¶
path to the file being managed. Aliases: dest, name
aliases: dest, name
state
no
file
directory
touch
absent
If directory, all immediate subdirectories will be created if they do not exist. If file, the file will NOT be created if it does not exist, see the copy or template module if you want that behavior. If absent, directories will be recursively deleted, and files will be removed. If touch, an empty file will be created if the path does not exist, while an existing file or directory will receive updated file access and modification times (similar to the way touch works from the command line).
-name:Touch a file (creates if not present, updates modification time if present)win_file:path:C:\Temp\foo.confstate:touch-name:Remove a file, if presentwin_file:path:C:\Temp\foo.confstate:absent-name:Create directory structurewin_file:path:C:\Temp\folder\subfolderstate:directory-name:Remove directory structurewin_file:path:C:\Tempstate:absent
This module is flagged as stableinterface which means that the maintainers for this module guarantee that no backward incompatible interface changes will be made.
For more information about Red Hat’s this support of this module, please
refer to this knowledge base article<https://access.redhat.com/articles/rhel-top-support-policies>