Directory Watcher

2 Ansichten (letzte 30 Tage)
Muhammad Arsalan
Muhammad Arsalan am 13 Mär. 2011
Hi,
I am working on auto generation of reports and i am stuck right now. My aim is to check a network disk (let's say Z:\) once every day and if someone has put new folders (data) in that network drive then my script will analyse that new data.
The concept that i am unable to grasp right now is how to handle following 2 cases:
Z:\MainFolder\myDesiredFolder
and 2nd case
Z:\MinaFolder\SubFolder\Subfolder\Subfolder\myDesiredFolder
You are welcome with any kind of suggestions, tips or ideas.
Many thanks in advance.
\\Arsalan

Akzeptierte Antwort

Oleg Komarov
Oleg Komarov am 13 Mär. 2011
You can use recursive directory listing in the following way:
dirs = folderSizeTree('D:\');;
Then you can store results across days and use setdiff to find which new folder were added.
Oleg
  5 Kommentare
Walter Roberson
Walter Roberson am 18 Mär. 2011
Reverse the order of your arguments to setdiff:
newfs = setdiff(folders2,folders1);
Muhammad Arsalan
Muhammad Arsalan am 18 Mär. 2011
Thanks Walter, now its working fine.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by