|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
CopyFile
The CopyFile function copies an existing file to a new file.
BOOL CopyFile(
LPCTSTR lpExistingFileName, // pointer to name of an existing file LPCTSTR lpNewFileName, // pointer to filename to copy to BOOL bFailIfExists // flag for operation if file exists );
Parameters
lpExistingFileName
Points to a null-terminated string that specifies the name of an existing file.
lpNewFileName
Points to a null-terminated string that specifies the name of the new file.
bFailIfExists
Specifies how this operation is to proceed if a file of the same name as that specified by lpNewFileName already exists. If this parameter is TRUE and the new file already exists, the function fails. If this parameter is FALSE and the new file already exists, the function overwrites the existing file and succeeds.
Return Values
If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
Security attributes for the existing file are not copied to the new file. File attributes (FILE_ATTRIBUTE_*) for the existing file are copied to the new file. For example, if an existing file has the FILE_ATTRIBUTE_READONLY file attribute, a copy created through a call to CopyFile will also have the FILE_ATTRIBUTE_READONLY file attribute. For further information on file attributes, see CreateFile.
See Also
CreateFile, MoveFile
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
CopyFile
Функция CopyFile копирует существующий файл в новый файл.
BOOL CopyFile(
LPCTSTR lpExistingFileName, // УКАЗАТЕЛЬ в имя существующего файла LPCTSTR lpNewFileName, // указателя, чтобы filename, чтобы копироваться на флаг BOOL bFailIfExists // для действия если файл существует );
Параметры
lpExistingFileName
Точки на недействительный расторгнутую строку, которые определяют имя существующего файла.
lpNewFileName
Точки на недействительный расторгнутую строку, которые определяют имя нового файла.
bFailIfExists
Определяет как это действие должно приступать если файл того же самого имени как, что определялся бы lpNewFileName уже существует. Если этот параметр является ИСТИНОЙ и новый файл уже существует, функция терпит неудачу. Если этот параметр является ЛОЖЬЮ и новый файл уже существует, функция перезаписывает существующий файл и получает.
Обратные Величины
Если функция добивается успеха, обратная величина ненулевая. Если функция терпит неудачу, обратная величина нулевая. Для того, чтобы расширять информацию ошибки, назовите GetLastError.
Замечания
Атрибуты Безопасности для существующего файла не скопированы в новый файл. Атрибуты файла (FILE_ATTRIBUTE_*) для существующего файла скопированы в новый файл. Например, если существующий файл имеет атрибут файла FILE_ATTRIBUTE_READONLY, копия созданные через вызов на CopyFile будет также иметь атрибут файла FILE_ATTRIBUTE_READONLY. Для дальнейшей информации об атрибутах файла, смотри CreateFile.
Смотри Также
CreateFile, MoveFile
|
|
|
|
| |