メインコンテンツまでスキップ

copy_path

copy_path(path_src: Union[str, Path], path_dst: Union[str, Path]) -> None

  • 説明:ファイルやディレクトリをコピーします。

  • パラメータ

    • path_src (path_src: Union[str, Path]):コピー元のファイルまたはディレクトリ。
    • path_dst (path_dst: Union[str, Path]):コピー先のファイルまたはディレクトリ。
  • import docsaidkit as D

    path_src = '/path/to/your/source'
    path_dst = '/path/to/your/destination'
    D.copy_path(path_src, path_dst)