How to delete files through Windows scheduled tasks

王林
Release: 2020-12-31 10:15:25
forward
10701 people have browsed it

How to delete files through Windows scheduled tasks

The windows system has its own scheduled tasks. We can use this function to implement scheduled file deletion operations.

(Learning video sharing: Programming video)

Call the bat file through Windows scheduled tasks.

1. First create a new bat file:

bat file description:
forfiles automatically deletes files 7 days ago (based on the current system time)
Example:
Code Code example:
forfiles /p “d:\test” /s /m . /d -7 /c “cmd /c del @path”
replace d:\test with the directory path you want;
/d -7 means to delete files older than 7 days.

How to delete files through Windows scheduled tasks

How to delete files through Windows scheduled tasks

2. Set up windows scheduled tasks and bind the bat file.
Search windows-task scheduler

How to delete files through Windows scheduled tasks

Create task
You need to click the task scheduler library or the menu below the task scheduler library to create a new task.

How to delete files through Windows scheduled tasks

Set tasks
Fill in the task name-Set security options

How to delete files through Windows scheduled tasks

Set triggers as required by the business -Run frequency

How to delete files through Windows scheduled tasks

Click operation-New-Browse-Select the new bat file-Confirm

How to delete files through Windows scheduled tasks

Click to confirm- You can see the scheduled task you just set in the task list.
Clicking the right button can also run, end and other functions. Is not it simple.

How to delete files through Windows scheduled tasks

Related recommendations: windows system

The above is the detailed content of How to delete files through Windows scheduled tasks. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!