As part of my install scripts for Visual Studio Online (VSO / VSTS) I delete the files in my directory shortly after uninstalling the services.
We have configuration files and logs that I'd like to preserve but everytime I try to tell the 'Delete Files Task' to ignore those files it deletes them anyway.
What I want is for ALL files in the Bifrost directory to be deleted except for
Can someone help please?
If the files you want to delete are located on another remote machine, you should use Powershell task or RemoteDelete task to delete the files.
For powershell task, there are many powershell script on the web to delete files from remote machine.
For RemoteDelete task, you can set as below:
Input your remote machine’s IP, username and password.
Path: the directory for Bifrost
folder, such as D:\test\Bitfrost
Include Items: folders and files you want to delete and separate with comma (,
). Such as delete folder temp
and file *.txt
, you can specify with temp,*.txt
Exculde Items: folders and files you want to keep. For you situation, you
should specify as Logs,App.Connections.Config,App.Queues.Config
Note: the Include Items option can't leave empty or use **
, otherwise it will delete all the files and folders in Bifrost
.