标签: c#
需要等到:
到现在,我已经成功地识别出该文件是在特定位置创建的。代码在下面
FileSystemWatcher FileSystemWatcher = new FileSystemWatcher(downloadpath); FileSystemWatcher.WaitForChanged(WatcherChangeTypes.Created, 5000);
我想等到任何附加的进程将其自身与下载的文件分离,以便我可以再次使用它。