https://github.com/erikhuizinga/dirall
Find all paths in the specified directory and its subdirectories.
https://github.com/erikhuizinga/dirall
Last synced: 3 months ago
JSON representation
Find all paths in the specified directory and its subdirectories.
- Host: GitHub
- URL: https://github.com/erikhuizinga/dirall
- Owner: erikhuizinga
- License: mit
- Created: 2018-01-16T07:23:05.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-17T08:54:36.000Z (almost 8 years ago)
- Last Synced: 2025-04-10T06:05:43.990Z (9 months ago)
- Language: Matlab
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://mathworks.com/matlabcentral/fileexchange/65744-dirall)

# `dirAll`
Find all paths in the specified directory and its subdirectories.
# Syntax
`paths = dirAll(path)` - Returns a cell of paths to all files and folders in the specified path.
`paths = dirAll(path, includeDirectories)` - Specifies whether or not (`true` or `false`, resp.) to include directories or only files in the output. Default is `true`.
# Output
`paths` is a `cell` of character arrays containing absolute paths to the found files and folders. It does not contain the specified path or its parent, only subfiles and folders.
# License
MIT