Lines Matching refs:file_operation
146 SHFILEOPSTRUCT file_operation = {0}; in Delete() local
147 file_operation.wFunc = FO_DELETE; in Delete()
148 file_operation.pFrom = double_terminated_path; in Delete()
149 file_operation.fFlags = FOF_NOERRORUI | FOF_SILENT | FOF_NOCONFIRMATION; in Delete()
151 file_operation.fFlags |= FOF_NORECURSION | FOF_FILESONLY; in Delete()
152 int err = SHFileOperation(&file_operation); in Delete()
158 if (file_operation.fAnyOperationsAborted) in Delete()
267 SHFILEOPSTRUCT file_operation = {0}; in ShellCopy() local
268 file_operation.wFunc = FO_COPY; in ShellCopy()
269 file_operation.pFrom = double_terminated_path_from; in ShellCopy()
270 file_operation.pTo = double_terminated_path_to; in ShellCopy()
271 file_operation.fFlags = FOF_NOERRORUI | FOF_SILENT | FOF_NOCONFIRMATION | in ShellCopy()
274 file_operation.fFlags |= FOF_NORECURSION | FOF_FILESONLY; in ShellCopy()
276 return (SHFileOperation(&file_operation) == 0); in ShellCopy()