22.07.2016, 11:05 | #1 |
Участник
|
WinApi::deleteFile
Создан класс RunBaseBatch, который удаляет файлы из папки
if (WinAPI::folderExists(#ExportPath)) { [handle, fileNameOpen] = WinAPI::findFirstFile(#ExportPath + "\\*.xlsx"); while (fileNameOpen) { createdDate = WinAPI::getFileCreatedDate(#ExportPath + "\\"+fileNameOpen); delta = systemDateGet() - createdDate; if(invoiceStorePeriod && delta >= invoiceStorePeriod) { if (WinApi::fileExists(#ExportPath + "\\"+fileNameOpen)) { WinApi::deleteFile(#ExportPath + "\\"+fileNameOpen); } } fileNameOpen = WinAPI::findNextFile(handle); } } Из job это все отлично работает и удаляет файлы из папки, а вот из класса не удаляет, в чем может быть проблема, подскажите пожалуйста. |
|
|
Похожие темы | ||||
Тема | Ответов | |||
axaptapedia: WinAPI | 0 | |||
Dynamics AX Geek: Finding files with WinAPI | 1 | |||
Dynamics AX Geek: Finding files with WinAPI | 0 | |||
WinApi::deleteFile(filePath) | 3 | |||
WinApi. Удаление файлов глючит. | 10 |
|