How to consistently scan for a text file (or any file)?

2 Ansichten (letzte 30 Tage)
Tamfor Dulin
Tamfor Dulin am 10 Feb. 2015
Bearbeitet: Tamfor Dulin am 11 Feb. 2015
So I wanted my app to scan a text file consistently... So that it will update according to what the file has soon as the file is in that specific directory. How is that possible?? Because I have no clue what is the function for that.

Akzeptierte Antwort

per isakson
per isakson am 10 Feb. 2015
Bearbeitet: per isakson am 10 Feb. 2015
"soon as the file is in that specific directory" &nbsp See: Monitor Changes to .TXT File
Create a FileSystemWatcher object fileObj and watch the Changed event for files
with a .txt extension in the folder C:\work\temp.
fileObj = System.IO.FileSystemWatcher('c:\work\temp');
fileObj.Filter = '*.txt';
fileObj.EnableRaisingEvents = true;
addlistener(fileObj,'Changed',@eventhandlerChanged);
"scan a text file consistently" &nbsp what exactly do you want to do. Read the file and search for specific content?
  1 Kommentar
Tamfor Dulin
Tamfor Dulin am 11 Feb. 2015
Bearbeitet: Tamfor Dulin am 11 Feb. 2015
Thanks alot What you told me is exactly what I needed. I can do the rest...

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by