Thanks for reply Shadooow.
I got success creating a backup of the chars and deleting it in 'teste' account
void DeleteTestingChars()
{
int iFire;
string path = "servervault/teste";
iFire = FileCreateDirectory("backup",path);
string newpath = path+"/backup";
string filter = "*.bic";
string file = FileGetFirst(path,filter);
while(file != "")
{
iFire = FileCopy(file,path,newpath,"",TRUE);
iFire = FileDeleteFile(file,path);
file = FileGetNext(path,filter);
}
filter = "*.bak";
file = FileGetFirst(path,filter);
while(file != "")
{
iFire = FileCopy(file,path,newpath,"",TRUE);
iFire = FileDeleteFile(file,path);
file = FileGetNext(path,filter);
}
}
Thank you again!