fileDelete

Version 23.4.8841


fileDelete


ファイルまたはディレクトリを削除します。

必要なパラメータ

  • file:削除するファイル(filename 含む)またはディレクトリのパス。

アウトプット属性

  • file:file:削除されたファイル(filename 含む)またはディレクトリのパス。

<!-- Creating the input item with the full path to the file to be deleted --> 
<arc:set attr="input.file" value="/tmp/myfiles/deleteme.txt"/>

<!-- Calling fileDelete and passing in the input item -->
<arc:call op="fileDelete" in="input" out="result" >
  <!-- Optional: Logging information about the deleted file to the application log -->
  <arc:set attr="_log.info" value="The file [result.file:file] was deleted."/>  
</arc:call>