Skip to main content
Question

Translation log promt for yes/ no

  • May 22, 2020
  • 2 replies
  • 13 views

kidega
Contributor
Forum|alt.badge.img+8

Hello,

I am using SystemCaller to delete temporary files during translation. Now I store them in a created folder "Temp" that I'd like the SystemCaller to delete with all its contents.

The typed text in SystemCaller is:

Del $(Output)\\Temp

where the $(Output) is a public parameter.

At the end of the translation it prompts to delete the full directory with

*, Are you sure (Y/N)?

Is there a way to type the Yes choice in the SystemCaller? Otherwise translation will get stucked here.

For single files the Del command works fine in SystemCaller.

Thanks.

 

 

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

david_r
Celebrity
  • 8392 replies
  • May 22, 2020

Try using the /q option to suppress the delete confirmation question, see the 'del' documentation: https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/del

 


kidega
Contributor
Forum|alt.badge.img+8
  • Author
  • Contributor
  • 41 replies
  • May 22, 2020

Try using the /q option to suppress the delete confirmation question, see the 'del' documentation: https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/del

 

Thanks @david_r !

Your suggestion was an easy fix.