Jump to: navigation, search

Difference between revisions of "Activity:DeleteFile (Activity)"


 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
The DeleteFileactivity deletes one or more files specified by its full path.
 +
 +
=Description=
 
{{ActivityInfoBox
 
{{ActivityInfoBox
 
| title = Delete File
 
| title = Delete File
Line 9: Line 12:
 
| version = 2.3+
 
| version = 2.3+
 
}}
 
}}
The DeleteFileactivity deletes one or more files specified by its full path.
 
  
==Arguments==
+
===Arguments===
 
{| class="wikitable sortable" | width = "50%"
 
{| class="wikitable sortable" | width = "50%"
 
|-
 
|-
Line 23: Line 25:
 
|}
 
|}
  
==Usage==
+
===Usage===
 
This activity deletes files specified by full path names given in the '''IN''' arguments '''SingleFileNamefiles''' and '''FileNames'''.
 
This activity deletes files specified by full path names given in the '''IN''' arguments '''SingleFileNamefiles''' and '''FileNames'''.
 
It returns the number of actual deleted files.
 
It returns the number of actual deleted files.
Line 32: Line 34:
 
! Argument !! Value
 
! Argument !! Value
 
|- align="left"
 
|- align="left"
| FileNames || New System.Collections.Generic.List(of String) _
+
| FileNames || <source lang="vb">New System.Collections.Generic.List(of String) _
From {"C:\file1.xml","C:\file2.xml"}
+
From {"C:\file1.xml","C:\file2.xml"}</source>
 
|}
 
|}
  
 +
<!-- DO NOT REMOVE THIS -->{{Activity/End}}<!-- DO NOT REMOVE THIS -->
  
 
==See also==
 
==See also==
 
* [[Workflow Designer]]
 
* [[Workflow Designer]]
 
* [[Activity:DeleteDirectoryContent_(Activity)]]
 
* [[Activity:DeleteDirectoryContent_(Activity)]]
 
[[Category:File primitives]]
 
[[Category:Activities]]
 

Latest revision as of 09:45, 4 November 2015

The DeleteFileactivity deletes one or more files specified by its full path.

[edit]

Description

Delete File
Name DeleteFile
Purpose Delete a file
Category File Primitives
Returns Number of deleted files
Version 2.3+

Arguments

Argument Type Direction Purpose
FileNames List<String> In List of full path names of files to be deleted
Result Integer Out Number of deleted file
SingleFileName String In Full path name of a file to be deleted

Usage

This activity deletes files specified by full path names given in the IN arguments SingleFileNamefiles and FileNames. It returns the number of actual deleted files.

Example

Argument Value
FileNames
New System.Collections.Generic.List(of String) _
From {"C:\file1.xml","C:\file2.xml"}


See also