Code Snippets

Tag: File

Find Files Recursively

find with -type f, size filter, and -exec for batch action.

Author: chris

Loop Over Files in a Directory

Iterate over matched files with a glob — safe with nullglob set.

Author: chris

Walk a Directory Tree

Use os.walk to enumerate every file under a path.

Author: chris

Write Lines to a File

Open a file for writing and emit a few lines.

Author: chris

Read a File Line by Line

Iterate a text file lazily with a context manager.

Author: chris

Recursive Directory Iterator in PHP

Walk a tree with RecursiveDirectoryIterator + RecursiveIteratorIterator.

Author: chris

Write to a File in PHP

Use file_put_contents with LOCK_EX for an atomic write.

Author: chris

Read a File Line by Line in PHP

Use SplFileObject to iterate a file lazily without loading it all into RAM.

Author: chris