a DOg@sZdZddlZddlmZddlmZddddZdd d Zdd dZdddZ ddZ dS)zFdistutils.file_util Utility functions for operating on single files. N)DistutilsFileError)logZcopyingz hard linkingzsymbolically linking)Nhardsym@c Csd}d}zzt|d}Wn6tyP}ztd||jfWYd}~n d}~00tj|rzt|Wn6ty}ztd||jfWYd}~n d}~00zt|d}Wn6ty}ztd||jfWYd}~n d}~00z||}Wn8ty0}ztd||jfWYd}~n d}~00|s<qz| |Wqty}ztd||jfWYd}~qd}~00qW|r| |r| n|r| |r| 0dS) a5Copy the file 'src' to 'dst'; both must be filenames. Any error opening either file, reading from 'src', or writing to 'dst', raises DistutilsFileError. Data is read/written in chunks of 'buffer_size' bytes (default 16k). No attempt is made to handle anything apart from regular files. Nrbzcould not open '%s': %szcould not delete '%s': %swbzcould not create '%s': %szcould not read from '%s': %szcould not write to '%s': %s) openOSErrorrstrerrorospathexistsunlinkreadwriteclose)srcdstZ buffer_sizeZfsrcZfdsteZbufr8/opt/alt/python39/lib64/python3.9/distutils/file_util.py_copy_file_contentssT (      rcCs ddlm}ddlm} m} m} m} tj |s %srr)Zdistutils.dep_utilrstatrrrrr r isfilerisdirjoinbasenamedirnamerdebug _copy_actionKeyError ValueErrorinforsamefilelinkr symlinkrutimechmod)rrZ preserve_modeZpreserve_timesupdater+verbosedry_runrrrrrdiractionstrrr copy_fileCsV!                r5c Csddlm}m}m}m}m}ddl} |dkr:td|||rB|S||sVt d|||rrt j |||}n||rt d||f|||st d||fd } zt ||WnRty } z8| j\} } | | jkrd } nt d ||| fWYd} ~ n d} ~ 00| rt|||d zt |Wnhty} zN| j\} } zt |WntynYn0t d |||| fWYd} ~ n d} ~ 00|S)a%Move a file 'src' to 'dst'. If 'dst' is a directory, the file will be moved into it with the same name; otherwise, 'src' is just renamed to 'dst'. Return the new full name of the file. Handles cross-device moves on Unix using 'copy_file()'. What about other systems??? r)rr r!r#r$Nrzmoving %s -> %sz#can't move '%s': not a regular filez0can't move '%s': destination '%s' already existsz2can't move '%s': destination '%s' not a valid pathFTzcouldn't move '%s' to '%s': %s)r0zAcouldn't move '%s' to '%s' by copy/delete: delete '%s' failed: %s)Zos.pathrr r!r#r$errnorr)rr r r"renamer argsZEXDEVr5r)rrr0r1rr r!r#r$r6Zcopy_itrZnummsgrrr move_files`        r:cCs>t|d}z$|D]}||dqW|n |0dS)z{Create a file with the specified name and write 'contents' (a sequence of strings without line terminators) to it. w N)r rr)filenamecontentsflinerrr write_files  rA)r)rrrNrr)rr) __doc__r Zdistutils.errorsrZ distutilsrr&rr5r:rArrrrs   3 d ?