I have to get file in a folder. My process can work in Batch.
My code is this:
Io                  file;
FileIoPermission    perm;
int handle;
Filename fileName;
[handle, filename]  = WINAPI::findFirstFile( myFilePatch + "\\*.txt");
fileOpen = strFmt (myFilePatch  + "\\" +  filename);
if (filename)
{
   perm = new FileIoPermission(filename, 'r');
   perm.assert();
   file = new TextIo(filename, 'r', 65001);
}
//etc... other code
// I go on to find another file
filename    =   WinAPI::findNextFile(handle);
fileOpen = strFmt (myFilePatch  + "\\" +  filename);
if (filename)
{
    // open file....
}
My problem is for WinAPI.findFirstFile and WinAPI::findNextFile I have an error.
How can I search in a folder,in batch process, the files ?
Thansk all,
enjoy!