Tutorial by Topics: filesystem

In Node.js, resource intensive operations such as I/O are performed asynchronously, but have a synchronous counterpart (e.g. there exists a fs.readFile and its counterpart is fs.readFileSync). Since Node is single-threaded, you should be careful when using synchronous operations, because they will...
public FileSystemWatcher() public FileSystemWatcher(string path) public FileSystemWatcher(string path, string filter) pathfilterThe directory to monitor, in standard or Universal Naming Convention (UNC) notation.The type of files to watch. For example, "*.txt" watches for changes...
The Scripting.FileSystemObject is much more robust that the legacy methods in this topic. It should be preferred in almost all cases.

Page 1 of 1