249
File Deletion (/D)
Function
This function deletes a file that exists on the communication partner side.
Starting method
int argc = Number of parameter arguments
char* argv[] = { "fl", "/D", "deleted file pathname" [, "deleted file pathname"] }
DoFlink(argc, argv)
Deleted file pathname
Specify the file to be deleted by its full pathname.
Multiple file pathnames can be specified together.
Parameter setup examples
argc = 4
argv[] = {“fl” , “/D” , “a: test *.dat” , “b: info test.dat”}
Files that correspond to a: test *.dat and the b: info test.dat file will be deleted
using the above specifications.