diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2024-09-27 22:36:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 16:36:31 +0200 |
commit | 4f5c0efaf24e863b26b16d7998eac3bdd830e7be (patch) | |
tree | 4eca358c7eec2f84b7ff2a151276c1184c081a33 /changelog.md | |
parent | 821d0806feb3648ced5809a78b07581ea3bd7880 (diff) | |
download | Nim-4f5c0efaf24e863b26b16d7998eac3bdd830e7be.tar.gz |
fixes #24174; allow copyDir and copyDirWithPermissions skipping special files (#24190)
fixes #24174
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 6fcf750b6..dfbddeaa6 100644 --- a/changelog.md +++ b/changelog.md @@ -70,6 +70,7 @@ - Changed `std/osfiles.copyFile` to allow specifying `bufferSize` instead of a hard-coded one. - Changed `std/osfiles.copyFile` to use `POSIX_FADV_SEQUENTIAL` hints for kernel-level aggressive sequential read-aheads. - `std/htmlparser` has been moved to a nimble package, use `nimble` or `atlas` to install it. +- Changed `std/os.copyDir` and `copyDirWithPermissions` to allow skipping special "file" objects like FIFOs, device files, etc on Unix by specifying a `skipSpecial` parameter. [//]: # "Additions:" |