Lines Matching refs:file_operation
89 SHFILEOPSTRUCT file_operation = {0}; in Delete() local
90 file_operation.wFunc = FO_DELETE; in Delete()
91 file_operation.pFrom = double_terminated_path; in Delete()
92 file_operation.fFlags = FOF_NOERRORUI | FOF_SILENT | FOF_NOCONFIRMATION; in Delete()
94 file_operation.fFlags |= FOF_NORECURSION | FOF_FILESONLY; in Delete()
95 int err = SHFileOperation(&file_operation); in Delete()
174 SHFILEOPSTRUCT file_operation = {0}; in ShellCopy() local
175 file_operation.wFunc = FO_COPY; in ShellCopy()
176 file_operation.pFrom = double_terminated_path_from; in ShellCopy()
177 file_operation.pTo = double_terminated_path_to; in ShellCopy()
178 file_operation.fFlags = FOF_NOERRORUI | FOF_SILENT | FOF_NOCONFIRMATION | in ShellCopy()
181 file_operation.fFlags |= FOF_NORECURSION | FOF_FILESONLY; in ShellCopy()
183 return (SHFileOperation(&file_operation) == 0); in ShellCopy()