|
6 | 6 | | [Write a string to a file][ex-write-string] | [![std-badge]][std] [![tempfile-badge]][tempfile] | [![cat-filesystem-badge]][cat-filesystem] | |
7 | 7 | | [Read lines of strings from a file][ex-std-read-lines] | [![std-badge]][std] | [![cat-filesystem-badge]][cat-filesystem] | |
8 | 8 | | [Rename or atomically replace a file][ex-rename] | [![std-badge]][std] [![tempfile-badge]][tempfile] | [![cat-filesystem-badge]][cat-filesystem] | |
| 9 | +| [Create a temporary file][ex-tempfile] | [![tempfile-badge]][tempfile] | [![cat-filesystem-badge]][cat-filesystem] | |
| 10 | +| [Atomically replace a file with a temporary file][ex-atomic-write] | [![tempfile-badge]][tempfile] | [![cat-filesystem-badge]][cat-filesystem] | |
9 | 11 | | [Avoid writing and reading from a same file][ex-avoid-read-write] | [![same_file-badge]][same_file] | [![cat-filesystem-badge]][cat-filesystem] | |
10 | 12 | | [Access a file randomly using a memory map][ex-random-file-access] | [![memmap-badge]][memmap] | [![cat-filesystem-badge]][cat-filesystem] | |
11 | 13 | | [Read a file line by line with BufReader][ex-buf-reader] | [![std-badge]][std] [![tempfile-badge]][tempfile] | [![cat-filesystem-badge]][cat-filesystem] | |
|
23 | 25 | | [Recursively calculate file sizes at given depth][ex-file-sizes] | [![walkdir-badge]][walkdir] | [![cat-filesystem-badge]][cat-filesystem] | |
24 | 26 | | [Find all png files recursively][ex-glob-recursive] | [![glob-badge]][glob] | [![cat-filesystem-badge]][cat-filesystem] | |
25 | 27 | | [Find all files with given pattern ignoring filename case][ex-glob-with] | [![glob-badge]][glob] | [![cat-filesystem-badge]][cat-filesystem] | |
| 28 | +| [Watch a directory for changes][ex-notify-watch] | [![notify-badge]][notify] | [![cat-filesystem-badge]][cat-filesystem] | |
| 29 | +| [Debounce a burst of file events][ex-notify-debounce] | [![notify-debouncer-full-badge]][notify-debouncer-full] | [![cat-filesystem-badge]][cat-filesystem] | |
| 30 | +| [Find a binary on the PATH][ex-which] | [![which-badge]][which] | [![cat-filesystem-badge]][cat-filesystem] | |
26 | 31 |
|
| 32 | +[ex-atomic-write]: file/read-write.html#atomically-replace-a-file-with-a-temporary-file |
27 | 33 | [ex-avoid-read-write]: file/read-write.html#avoid-writing-and-reading-from-a-same-file |
28 | 34 | [ex-buf-reader]: file/read-write.html#read-a-file-line-by-line-with-bufreader |
29 | 35 | [ex-buf-writer]: file/read-write.html#write-to-a-file-with-bufwriter |
|
37 | 43 | [ex-find-file-loops]: file/dir.html#find-loops-for-a-given-path |
38 | 44 | [ex-glob-recursive]: file/dir.html#find-all-png-files-recursively |
39 | 45 | [ex-glob-with]: file/dir.html#find-all-files-with-given-pattern-ignoring-filename-case |
| 46 | +[ex-notify-debounce]: file/watch.html#debounce-a-burst-of-file-events |
| 47 | +[ex-notify-watch]: file/watch.html#watch-a-directory-for-changes |
40 | 48 | [ex-path-inspect]: file/dir.html#construct-and-inspect-a-path |
41 | 49 | [ex-random-file-access]: file/read-write.html#access-a-file-randomly-using-a-memory-map |
42 | 50 | [ex-read-to-string]: file/read-write.html#read-a-whole-file-into-a-string |
43 | 51 | [ex-rename]: file/read-write.html#rename-or-atomically-replace-a-file |
44 | 52 | [ex-std-read-lines]: file/read-write.html#read-lines-of-strings-from-a-file |
45 | 53 | [ex-stdin-readline]: file/read-write.html#read-a-line-from-stdin |
| 54 | +[ex-tempfile]: file/read-write.html#create-a-temporary-file |
| 55 | +[ex-which]: file/which.html#find-a-binary-on-the-path |
46 | 56 | [ex-write-fmt]: file/read-write.html#format-text-into-a-string-with-write |
47 | 57 | [ex-write-string]: file/read-write.html#write-a-string-to-a-file |
48 | 58 |
|
|
0 commit comments