update_check
Check for updates and replace old files. It's possible to compare the modification date and the file size. Useful when some files are modified in one directory and you want to synchronize them with another folder.
USAGE
update_check(fpath)
old_files = update_check(fpath)
[old_files not_found] = update_check(fpath)
[...] = update_check(fpath)
[...] = update_check(fpath, rec)
[...] = update_check(fpath, rec, crit)
[...] = update_check(fpath, rec, crit, ext)
[...] = update_check(fpath, rec, crit, ext, replace)
INPUT
- FPATH: parent folder to search for changes (the original files are expected to be in MATLAB's search path)
- REC: 1 (search for files recursively, i.e., include all FPATH subfolders), 0 (only FPATH) [default: 0]
- CRIT: criterion: 'time' (compare the modification date) or 'size' (compare the file size) [default: 'time']
- EXT: cell array containing the file extension [default: {'m' 'mat' 'fig'}]
- REPLACE: 1 (replace old files), 0 (don't replace) [default: 0]
If any of the input variables is empty or missing, the default value will be used.
OUTPUT
- OLD_FILES: cell array with the name and path of the old files
- NOT_FOUND: cell array with the name and path of the files that were not found in the search path
Cite As
Guilherme Coco Beltramini (2024). update_check (https://www.mathworks.com/matlabcentral/fileexchange/47240-update_check), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
Version | Published | Release Notes | |
---|---|---|---|
1.0.0.0 |